-
AuthorSearch Results
-
June 13th, 2018 at 12:13 #64908
In reply to: cookie notice and septera 1.2.4
Listopad
Power UserTested Cookie Notification Plugins:
Cookie Law Bar, Cookie Notice Bar, Cookie Notify, Easy Cookie Law, Eu Cookie Notice, GDPR Cookie Consent, Cookie Consent, Сookie-notice.All plugins with the theme Septera text are not present, only the “Ok” buttons are visible.
The possible reason is:
In the browser, FireFox looked at the source code of the page in the Septera theme. Errors found:
1. The target tag </div> is detected, but there are open items
2. Found the homeless end tag </footer>
3. End tag </body> detected, but there are unclosed itemsThe syntax in the theme files is probably broken.
I suggest to apply the theme-check plugin, which showed many errors in the theme files.
June 3rd, 2018 at 12:44 #64446In reply to: Removing old CSS overides
Oops forgot to say I found it! I had the test site and the proper site on the same domain but different folders but for some reason it was reading the options on the actual site which it had stored because I had the theme installed but not running…
So might be a good idea to tell everyone if you are trying it out on a test site remove the theme from the actual site… it might read those files as well 🙂
If that makes sense 🙂
Thanks for all your help
May 14th, 2018 at 14:00 #63661In reply to: Presentation Page broken after Permalinks change
gdutson
Power UserWhen I said I am getting not found error I mean that it loads a page but on the page it says
Not Found
Apologies, but the page you requested could not be found. Perhaps searching will help.It shows my menu and posts but no presentation slider etc.
Any fixes or troubleshooting tips would be greatly appreciated.
Thanks.
May 2nd, 2018 at 03:10 #63179In reply to: Latest Update damaged child theme
I agree with the above post. My child theme is now inoperable. I receive the following error:
“Fatal error: Call to undefined function cryout_sanitize_tnl() in /home1/consultease/public_html/wp-content/themes/kahuna/admin/options.php on line 85”
When I navigated to the file, I first noticed that my child theme located in “wpcontent/themes” file structure now has a .hold extension. It reads: /wpcontent/themes/kahuna-child.hold
What happened there?
Also, when I finally navigated to “/home1/consultease/public_html/wp-content/themes/kahuna/admin/options.php on line 85” I found the following:
kahuna line 85:
‘info_sections’ => array(
‘cryoutspecial-about-theme’ => array(
‘title’ => __( ‘About’, ‘cryout’ ) . ‘ ‘ . cryout_sanitize_tnl(_CRYOUT_THEME_NAME),
‘desc’ => ‘<br>’,
),
HELP!
Website: consulteasellc.com
-
This reply was modified 7 years ago by
simpson1331.
-
This reply was modified 7 years ago by
simpson1331.
April 9th, 2018 at 00:34 #62155In reply to: Nirvana Featured Image Size
On further research, I found out that Nirvana only displays featured images as thumbnails in the post excerpt, not in the main post. I thought this would be a problem, but it turns out that displaying my image in the main post is just a matter of inserting it. WordPress nicely sizes the image to appear within the content area. I have it on good, sighted authority (my beautiful wife) that the theme does a very nice job wrapping the post excerpt around the thumbnail, so there’s that, and that’s awesome.
I sure appreciate your time, Zed. Thank you.
Website: theblindkind.com
hi,
On an article in French, as I am French, I found this for galleries.
https://wpchannel.com/wordpress/tutoriels-wordpress/support-galeries-wordpress-html5/
– A well-coded theme must have the following line of code for effective support of image galleries:
add_theme_support('html5', array('gallery'));
The presence of this line will have the effect of using the
figure
tag. In case of absence, WordPress will usedl
anddt
tags and will add inline the following code tip:<style type='text/css'> #gallery-1 { margin: auto; } #gallery-1 .gallery-item { float: left; margin-top: 10px; text-align: center; width: 33%; } #gallery-1 img { border: 2px solid #cfcfcf; } #gallery-1 .gallery-caption { margin-left: 0; } /* see gallery_shortcode() in wp-includes/media.php */ </style>
In other words, it is not very optimal! If you develop your own themes, respect these good practices but if you pick up a premium theme you can simply filter the whole to disable adding CSS inline with:
/* Removing Default WordPress Syles for Galleries */ add_filter('use_default_gallery_style', '__return_false');
For my part, here is the CSS code that I included in my basic theme:
.gallery { margin: 0 -1.1666667% 1.75em; } .gallery-item { display: inline-block; max-width: 33.33%; padding: 0 1.1400652% 2.2801304%; text-align: center; vertical-align: top; width: 100%; } .gallery-item a { display: inline-block; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery-icon img { margin: 0 auto; } .gallery-caption { color: #686868; display: block; font-size: 13px; font-size: 0.8125rem; font-style: italic; line-height: 1.6153846154; padding-top: 0.5384615385em; } .gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; }
I pointed out to the author of the Post, that he was missing
. Gallery-Columns-3. Gallery-Item
In its code for style. css
But maybe it can help.Website: gallery,%20style.cs
February 27th, 2018 at 23:30 #60320Zed
Cryout Creations mastermindThe theme already supports in-page links (since this is something the browser and HTML standards specify and not theme-dependent). You need to use content links in your menu items (and a custom menu, as you found out) for these to work, like
#my-custom-link
to point to an anchor defined in the content:[...] <a id="my-custom-link"> </a> [...]
or any other tag with an unique id associated to it:
[...] <h3 id="my-custom-link">Section Title</h3> [...]
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.February 26th, 2018 at 21:56 #60236kvalentk
Power UserI found a plugin that seems to be working, but it is slow so far–or perhaps I should say I’ve not found a way to speed it up yet. The plugin is “Page scroll to id.” It requires that every menu item be set as a custom link. If anyone on this forum knows how to speed it up, please let me know, and thanks.
Website: settingForth.pub
-
This reply was modified 7 years ago by
kvalentk.
February 5th, 2018 at 17:03 #59404In reply to: Tablet & Phone Header area issues
I hope this is ok to post but I have a tempera site (meguk.ac.uk) with responsiveness set on and a presentation page with no slider but several cryout columns enabled. Posts are disabled on the presentation page. On android smartphones and iphones we seem to get the collapsed menu and header image and then
Nothing Found
Apologies but no results were found for the requested archive. Perhaps searching will help find a related post.
Under this is a search box.
Any help appreciated.
Jeff.
January 25th, 2018 at 08:16 #58796In reply to: Woocommerce and Tempera
I really like the Tempera theme and would like to keep using but I also have the same issue.
I did a bit of playing around by saving the page to a local html file and changing some values and found that if I remove the class=”input-text qty text” bit from the line in the page as<input type=”number” id=”quantity_5a689a2ae7c3d” class=”input-text qty text” step=”1″ min=”1″ max=”” name=”quantity” value=”1″ title=”Qty” size=”4″ pattern=”[0-9]*” inputmode=”numeric” />
then my quantity control renders better and you can see the number, the control is wider than necessary but at least the number is not visible.
I went looking for the code that builds the “input type=number” line and found the file wp-content/plugins/woocommerce/templates/global/quantity-input.php
I edited the file (of course making a backup first) and removed the class=”input-text qty text” from line 33 that begins with input type=”number” and now my product pages all display the quantity control that is readable.
So the question now is whether the CSS class definition for the class=”input-text qty text” is missing or incorrectly defined in the Woocommerce CSS files??? I’m not very knowledgeable regarding CSS but will have a dig around…It would be great if the Woocommerce developers see this or someone more knowledgeable with WP and CSS can suggest an “easy fix” that does not involve manually editing a modules file (requiring the edit after updates too of course)…
January 24th, 2018 at 11:04 #58747In reply to: Sidebars showing below content
I agree, for with some combinations of items on the page or certain settings, the sidebars move to below the content again. I found this out by accident and can not yet reproduce this or name the conflicting items/settings, but something is not yet working properly.
Website: www.deltavliegschool.com
January 6th, 2018 at 05:33 #57951In reply to: Lost featured image w/ update
Ok, I fixed it. I found that if I set the layout width 50px shorter that the featured image became functional again. Only thing is 50px of the right side of the featured image would be missing. Then I remembered not long after Mantra came out the issue with people having 50px left over after setting their layouts. I checked in the includes folder and there it was in the theme-setup.php file . First line I changed the 50 to a 0. The planets re-aligned. Thanks.
January 5th, 2018 at 00:38 #57919In reply to: responsive featured post image thumbnail bug
@Zed: You are refering to some king of filter to disable the srcset functionality but i do not see any here https://www.cryoutcreations.eu/wordpress-themes/septera/septera-0-9-2-is-jam-packed-with-coolness
Can you help?EDIT:
I found it in the source code.
$use_srcset = apply_filters( 'septera_featured_srcset', true );
-
This reply was modified 7 years ago by
krisb.
December 31st, 2017 at 22:41 #57776In reply to: Remove post info from featured picture overlay
Hi!
I would like not to display the info when hovering over the image. How can I hide the information displayed at the left side of the image as well as the link icon?
I haven’t found a way to do it.
Thanks!
ClaudiaDecember 13th, 2017 at 16:35 #57239In reply to: Contact Form 7 "send" cycles forever
Bitpicker
Power UserThanks for the suggestion, which then proved that Anima wasn’t to blame. I just found the time to wade through all the plugins and switch them off and on again and found that Contact Form 7 once more doesn’t work well with NextGen Gallery. If I switch NextGen off, then the form posts normally. That might have been a problem even before the theme change, I just never noticed. Sorry to bother you. 🙂
December 13th, 2017 at 15:22 #57233In reply to: Static Slider image not showing on mobile
I have the same issue on my website.
I see that the problem was solved for http://www.aby.legal but still there in travelingafeks.com.Can you please share how it was fixed.
I’m seeing it on chrome when I resize the screen.
Found the solution in another reply, added the following css:
body .lp-staticslider .lp-staticslider-image {
max-width: 100% !important;
}Website: helkikim.at.yemima.co.il
-
This reply was modified 7 years ago by
ShayRaz.
December 5th, 2017 at 13:38 #56941In reply to: landing page (Fluida)
Any idea how to remove Search Box and “Nothing Found” from the bottom of the landing page?
Website: www.theisleofmullguesthouse.co.uk
November 19th, 2017 at 18:03 #56489In reply to: Slider Image Size and Number of Links
Hi again Zed- thanks for the response. Not sure if I’m doing something wrong but it seems to have a min height or width bc even if I put a smaller image for the Slider–>Static image (365 x 365) it just got blown up and stretched out. If I put a much larger image (3000 x 3000) then it displayed no problem. I kept playing with it and found that sample with your slider plugin had an image 2000 x 900 that seemed to be the ideal size b/c when I created an image near that size it displayed like I had expected. Now I have a slight gap at the top that I didn’t before with a larger image but tired of playing with it and it is good enough 😛
November 6th, 2017 at 21:53 #55677In reply to: Length of texts on landing page
Thank you so much Zed!! I already found a plugin called “Easy Custom Auto Excerpt”. Is not exactly doing what I was hoping for. On top of that, it affects the lay out of the text in the slider…..text background color is gone, most of it, see attached screenshot
Do you perhaps have a suggestion for a plugin?Thanks again!!
Website: www.teamkollee.nl
October 28th, 2017 at 21:37 #55341In reply to: Change the size of headings
well,
I found this piece of code in custom-styles.php file
<?php $font_root = 2.6; // headings font size root for ( $i = 1; $i <= 6; $i++ ) { $size = round( ( $font_root - ( 0.27 * $i ) ) * ( preg_replace( "/[^\d]/", "", esc_html( $anima_fheadingssize ) ) / 100), 5 ); ?> h<?php echo $i ?> { font-size: <?php echo $size ?>em; } <?php } //for ?>
Changing 0.27 to 0.32 does the trick, but it is not a good solution as it will be wiped after a theme update…
Any suggestions?
October 22nd, 2017 at 21:17 #55142In reply to: Create a dropdown menu to the left side
Ok, thank you very much, Zed. So it seems that this is not to solve via CSS (e.g. CSS anywhere like ‘left: -149px;’ for sub-menu or similar)…
Nevertheless: For me Septera is the one of the best themes I found until now. It’s all very well elaborated. Other theme developers could learn from its code. Fantastic work!October 22nd, 2017 at 10:47 #55111In reply to: Selection box Archive widget
This reply is private.September 18th, 2017 at 08:41 #53879In reply to: Slider and header images cause content jump
My bad. I thought jumping content was pretty well defined once it landed on CSS Tricks. Here’s a link to a related article in case you’re not familiar: https://css-tricks.com/content-jumping-avoid/.
In the context of Septera, the jumping content plays out like this (on slower, but not ridiculously slow, internet connections):
- Load the static landing homepage.
- First paint occurs, hero media not yet visible.
- Viewport lays out featured icon blocks (slide in from right), font icons not yet loaded.
- Hero image begins to load, dimensions are determined and featured blocks pushed off screen.
- Hero image loads based on browser speed, presenting background or color.
To reproduce this behavior just throttle your connection speed to Cable on the above website or the one provided here using dev tools or your favorite client-side proxy.
I found a pretty good article on https://perf.rocks explaining how to combat this type of behavior. It wouldn’t be such a big thing if it weren’t for the font icons not loading yet. But the animation looks cool and will probably reduce perceived latency from the user standpoint.
Either way loving the theme. Best on the market, and you know it!
Website: dev-bali-bebas.pantheonsite.io
-
This reply was modified 7 years ago by
jhabdas.
September 9th, 2017 at 22:56 #53437In reply to: logo doesn´t show in Anima
premmarga
Power UserHi, this is what I found too, but the logo I have put there, is not showing up on my page.
Is it working for you??
My logo is a jpg and 420×208i´m curious if your get your logo showing up??
September 3rd, 2017 at 16:25 #53141In reply to: Not displaying correctly in iPhone or Android
Zed
Cryout Creations mastermindWhat page are you getting the not found message on?
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.August 29th, 2017 at 11:41 #52929In reply to: Not displaying correctly in iPhone or Android
francis
Power UserThank you very much. I did a plugin update for jetpack and I think the mobile theme was enabled.
I unchecked and this got the Temepra mobile theme back, but it’s now displaying a Not found message?
Why is this and how do I fix it. The site looks fine on laptops and desktops.Thank you for your time.
Francis
August 26th, 2017 at 10:24 #52776In reply to: BUG: No content visible anymore on mobile
Found the issue! In my child theme in the header.php the Facebook Page Plugin script I had to move one line further down, behind <?php cryout_body_hook(); ?>. Really glad I found it.
Excuse the bug report – it clearly is not a bug, but simply my bad coding.
Website: e-sigaret-dampen.nl
August 13th, 2017 at 16:07 #51873In reply to: Show featured posts on the presentation page
Thanks Zed, I had found out myself that is the reason they are shown on the homepage. I thought I would automatically see the sticky posts but I had to enable posts on the homepage first. That was in the beginning not clear to me. Thanks for your reply!
August 3rd, 2017 at 21:36 #51195In reply to: How to change margins in Parabola
Zed
Cryout Creations mastermindError 404 – Not Found
The document you are looking for may have been removed or re-named.
for both URLs.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.August 1st, 2017 at 22:18 #51116In reply to: Fonts Missing
ok i found the problem. Not in tempera.
-
This reply was modified 7 years ago by
-
AuthorSearch Results