Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'cache'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Most images blank on slides for Kadence Gallery
Thanks for your response. 🙂
That page uses a different gallery, which links to all the projects listed above with images and the rest do not have them.
The first, second, and fourth projects on the top row have the images showing. All of the rest on the site do not, like this one:
http://accentsofthesouth.com/backyard-oasis/The issue remained after disabling all plugins except Kadence Slider and removing all of the custom CSS in the Advanced Settings tab of the Theme Options for the Virtue Theme. I just cleared the cache with no changes. Anything else I could try?
In forum: Virtue ThemeIn reply to: Most images blank on slides for Kadence Gallery
In forum: Ascend ThemeIn reply to: Mobile Header Image
I cleared the cache on my wp site as well. So when you hold your iphone vertically, you’re able to see the full toothbrush as well as horizontally? Sorry on my end it’s still showing just a piece of the tooth brush. I asked, cause if you can see it vertically, I don’t mind waiting a few hours to see if the header updates on my phone.
In forum: Ascend ThemeIn reply to: Mobile Header Image
In forum: Ascend ThemeIn reply to: Mobile Header Image
In forum: Pinnacle ThemeIn reply to: Can’t save the results when editing page or post
I use WP Super Cache and have tried all possible scenarios with enabling, disabling and also clearing cache. The results is the same – when I try do add anything new in the post or page and then update it, then I’m redirected to the main post page and all new content is missing.
I also uninstalled TinyMCE Advanced plugin it didn’t make any progress.best regards,
TomekIn forum: Pinnacle ThemeIn reply to: Can’t save the results when editing page or post
In forum: Ascend ThemeHi,
I got a HTTP ERROR 500 after the latest theme update (which did not complete in proper in the WP admin panel).
(After which the whole website is unaccessable, incl the wp admin panel)Also tried to re-install wordpress and the latest Ascend Premium theme and the installation did not complete and with error from server.
Got the following after checking through the server log:-
2017-10-17 22:49:44 PHP Fatal error: require_once(): Failed opening required ‘D:Inetpubvhostsdomain.comhttpdocswp-contentthemesascend_premiumthemeoptionsredux/inc/themecheck/class.redux_themecheck.php’ (include_path=’.;.includes;.pear’) in D:Inetpubvhostsdomain.comhttpdocswp-contentthemesascend_premiumthemeoptionsreduxframework.php on line 56
Currently running php 7.1.10
memory_limit 128M (Default)
max_execution_time 60 (Default)
max_input_time 60 (Default)
post_max_size 128M
upload_max_filesize 128M
opcache.enable on (Default)Any help would be appreciated to resolve the issue.
In forum: Virtue ThemeIn reply to: Theme Options Forced DEV Mode off Enabled
In forum: Virtue ThemeIn reply to: Theme Options Forced DEV Mode off Enabled
October 17, 2017 at 3:57 pm #164103Hmm, I don’t see this when I log in to your site. Have you tried clearing your cache? Or using a different browser?
(By the way… congratulations on the birth of your first child!)
Thanks, Time flys… she’s already a Year and 3 months.
Ben
In forum: Pinnacle ThemeIn reply to: Top of page on mobile
In forum: Pinnacle ThemeIn reply to: Top of page on mobile
I’m not seeing the CSS I sent you in your custom CSS box. Did you clear your cache after adding it?
As for the slider issue, the first place that I would check is Theme Options> Home Mobile Slider. Make sure that the correct slider is assigned there. if the settings are correct, try clearing your cache to rule that out as an issue.
Let me know what you find.
-Kevin
In forum: Membership ForumsIn reply to: Kadence Slider Pro slide transition speed
In forum: Virtue ThemeIn reply to: Hide Metaboxes
Hi Ben,
Thanks. I tried changing it to
remove_filter( 'cmb2_admin_init', 'bfc_current_courses_metaboxes', 60 );but that didn’t work. Here is my code:Add to theme options (adds switch under Theme Extensions):
function bfc_custom_theme_extensions() { $staff_metabox = array( 'section_id'=> 'theme_extensions', 'id'=>'bfc_staff_metabox', 'type' => 'switch', 'title' => __('Additional Staff Details', 'virtue'), 'subtitle' => __('Turn On/Off additional staff details references.', 'virtue'), 'default' => 0, 'required' => array('kadence_staff_extension','=','1') ); Redux::setField('virtue_premium', $staff_metabox); } add_action( 'after_setup_theme', 'bfc_custom_theme_extensions', 1);Metaboxes:
function bfc_current_courses_metaboxes() { $prefix = 'ums_one_'; $all_terms_clean = get_all_terms(); $kt_staff_listing = new_cmb2_box( array( 'id' => 'additional_staff_details', 'title' => __('Additonal Staff Details', 'virtue'), 'object_types' => array( 'staff' ), // Post type 'priority' => 'high', ) ); $kt_staff_listing->add_field( array( 'name' => __('Curriclum Vitae', 'virtue'), 'desc' => __('', 'virtue'), 'id' => $prefix . 'curriculum_vitae', 'type' => 'file', 'options' => array( 'wpautop' => false, 'media_buttons' => true, 'textarea_rows' => 3, 'teeny' => true, ), ) ); $kt_staff_listing->add_field( array( 'name' => __('Selected Publications', 'virtue'), 'desc' => __('', 'virtue'), 'id' => $prefix . 'publications', 'type' => 'wysiwyg', 'options' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 3, 'teeny' => false, ), ) ); $kt_staff_listing->add_field( array( 'name' => __('Additional Publications', 'virtue'), 'desc' => __('', 'virtue'), 'id' => $prefix . 'additional_publications', 'type' => 'wysiwyg', 'options' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 3, 'teeny' => false, ), ) ); $kt_staff_listing->add_field( array( 'name' => __('Education', 'virtue'), 'desc' => __('', 'virtue'), 'id' => $prefix . 'education', 'type' => 'wysiwyg', 'options' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 3, 'teeny' => false, ), ) ); $kt_staff_listing->add_field( array( 'name' => __('Research Interests', 'virtue'), 'desc' => __('', 'virtue'), 'id' => $prefix . 'research-interests', 'type' => 'wysiwyg', 'options' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 3, 'teeny' => false, ), ) ); $kt_staff_listing->add_field( array( 'name' => __('Current Courses', 'virtue'), 'desc' => __('', 'virtue'), 'id' => $prefix . 'current-courses', 'type' => 'wysiwyg', 'options' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 3, 'teeny' => false, ), ) ); $kt_staff_listing->add_field( array( 'name' => __('Faculty Research Blog', 'virtue'), 'desc' => __('Start typing the name of the taxonomy term in which you would like to select the most recent 5 posts from.', 'virtue'), 'id' => $prefix . 'recent_posts', 'type' => 'select', 'options' => $all_terms_clean, 'attributes' => array( 'data-maximum-selection-length' => '1', ), ) ); $kt_staff_listing->add_field( array( 'name' => __('In The Media', 'virtue'), 'desc' => __('Please list no more than 5 current/highlighted media articles.', 'virtue'), 'id' => $prefix . 'media', 'type' => 'wysiwyg', 'classes' => 'double-arrows', 'options' => array( 'wpautop' => false, 'media_buttons' => false, 'textarea_rows' => 1, 'teeny' => false, ), ) ); } add_filter( 'cmb2_init_before_hookup', 'bfc_current_courses_metaboxes', 21 );Adds the metaboxes to the Staff page.
Code to remove the metaboxes if switch if off:
function bfc_remove_metaboxes() { $options_slug = get_option(OPTIONS_SLUG); if(isset($options_slug['bfc_staff_metabox']) && $options_slug['bfc_staff_metabox'] == '0') { remove_filter( 'cmb2_admin_init', 'bfc_current_courses_metaboxes', 60 ); } } add_action( 'after_setup_theme', 'bfc_remove_metaboxes', 60);I have tried changing the priority but that doesn’t seem to help either. I have several other functions that run based on the switch (such as showing the content on the Staff page, content-singlestaff.php) but those all work as expected. Just in case, here is the code for that:
if(isset($options_slug['bfc_staff_metabox']) && $options_slug['bfc_staff_metabox'] == '1') : ?> <div id="content" class="container"> <div class="row single-article"> <aside id="ktsidebar" class="col-lg-3 col-md-4 kad-sidebar additional-info" style="float: right;"> <div class="col-1-4"> <div class="staff-img thumbnail alignleft clearfix"> <?php the_post_thumbnail( 'large' ); ?> </div> </div> <?php if ( ! empty( $telephone ) ) { ?> <div class="field"><i class="icon-mobile"></i> <a href="tel:<?php echo esc_html( strip_tags( $telephone ) ); ?>"><?php echo esc_html( $telephone ); ?></a></div> <?php } if ( ! empty( $email ) ) { ?> <div class="field"><i class="icon-envelope"></i> <a href="mailto:<?php echo esc_html( $email ); ?>"><?php echo esc_html( $email ); ?></a></div> <?php } if ( ! empty( $address ) ) { ?> <div class="field"><i class="icon-map-marker" style="float: left; margin-right: 2px;"></i> <?php echo wp_kses_post( $address ); ?></div> <?php } if ( ! empty( $cv ) ) { ?> <div class="field"><i class="icon-profile" style="float: left; margin-right: 2px;"></i> <a href="<?php echo wp_kses_post( $cv ); ?>" target="_blank">Curriclum Vitae</a></div> <hr> <?php } if ( empty( $cv ) ) { ?> <hr> <?php } if ( ! empty( $education ) ) { ?> <div class="field"><h3>Education</h3> <?php echo wp_kses_post( $education ); ?></div> <hr> <?php } if ( ! empty( $research ) ) { ?> <div class="field"><h3>Research Interests</h3> <?php echo wp_kses_post( $research ); ?></div> <hr> <?php } if ( ! empty( $courses ) ) { ?> <div class="field"><h3>Current Courses</h3> <?php echo wp_kses_post( $courses ); ?></div> <hr> <?php } if ( ! empty( $blog ) ) { ?> <div class="field"><h3>Faculty Research Blog</h3> <?php // WP_Query arguments $args = array ( 'post_type' => 'post', 'update_post_term_cache' => false, 'no_found_rows' => true, 'posts_per_page' => 5, ); $recent_post_term = get_post_meta( $post_id, 'ums_one_recent_posts', true ); if ( $recent_post_term && ! empty( $recent_post_term ) ) { $args['tax_query'] = array( 'relation' => 'OR', array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => $recent_post_term, ), array( 'taxonomy' => 'post_tag', 'field' => 'term_id', 'terms' => $recent_post_term, ), ); } $recent_posts_query = new WP_Query( $args ); // The Loop if ( $recent_posts_query->have_posts() ) { while ( $recent_posts_query->have_posts() ) { $recent_posts_query->the_post(); ?> <ul class="single-arrow"> <li> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> </ul> <?php } } // Restore original Post Data wp_reset_postdata(); ?> </div> <hr> <?php } if ( ! empty( $media ) ) { ?> <div class="field"><h3>In The Media</h3> <?php echo wp_kses_post( $media ); ?></div> <?php } ?>If the ‘bfc_staff_metabox’ is turned off, the additional fields do not show (as intended). When on, they do. However, when switched off, the metaboxes should not show on Staff custom-post type in WP Admin (prior to the update this worked fine).
Additionally, prior to the update,
class' => 'double-arrowsworked but now does not. It should add a class to theif ( ! empty( $media ) ) { ?> <div class="field"><h3>In The Media</h3> <?php echo wp_kses_post( $media ); ?></div> <?php } ?>section but does not. I also tried
classes' => 'double-arrowsbut that doesn’t work either.Thank you for all the help – I really appreciate it!!
In forum: Ascend ThemeIn reply to: Firefox 56 Bug
In forum: Virtue ThemeIn reply to: Follow-up for Ben on Site Origin
October 16, 2017 at 10:00 pm #163798If they test on your site when you view a drafted post you see a cached version. Since if you published that would update it and if you simply live preview or view the admin it all shows updated. It’s your draft that is showing a cache. And through the tests, I’ve done I only see this on your server.
But, as this doesn’t have anything to do with our theme, if you would like to follow up with your host and page builder you are welcome to.
Again I suggest that you simply publish your pages.
Ben
In forum: Virtue ThemeOctober 16, 2017 at 6:40 pm #163783Hi Ben:
Excerpt from communication I received from my technical consultant. The observation was confirmed by the host. If you have any other info for us on what your examination involved let me know.
I checked your cPanel account, Host account with A2 and your php(info) file on the server and it does not appear that you are running any server-side cache. With your hosting package the only option available would have been opCache. I’m not sure where Ben from Kadence themes is seeing that your drafts are being cached–perhaps you can ask him how he saw this.
Regards,
CynthiaIn forum: Virtue ThemeIn reply to: Defer / Async javascript and css
October 16, 2017 at 9:41 am #163642Hey,
you wrote that your site load time was5 seconds or so
This means you have much more serious issues then deferring javascript. Deferring JS would never save you seconds unless something is wrong. so what I’m saying is that you want to focus on the real issue before you try implementing deferring js.
In terms of the theme, it has no issue with deferring js, but many plugins will. As for a 500 error that means server issue (possible permissions) and that your server isn’t functioning under the settings. That doesn’t have to do with theme or plugins.
You shouldn’t use Autoptimize and W3TC, they do the same things so your likely going to conflict. I would suggest you use super cache if you’re wanting to use Autoptimize. But in the end talking with your host and getting there suggestion is the best since they will know what caching tends to run best on their server. Especially when their server seems to be having trouble and creating 500 errors.
All that said the biggest tell is your site load time while just loading the coming soon page:
from US:
https://tools.pingdom.com/#!/eqXrub/http://izanami-wheel.com/en/
from EU:
https://tools.pingdom.com/#!/cmxCZG/http://izanami-wheel.com/en/That is not loading your js and css. It’s only got 8 requests and your load time is very bad.
This means you seriously need to consider a better host. If that isn’t an option then you need to try CloudFlare as your host is taking a very long to respond.
In forum: Ascend ThemeIn reply to: Firefox 56 Bug
In forum: Ascend ThemeIn reply to: WooCommerce product import question
Hello Hannah!
Unfortunately deleting all cache didn’t work.
I’ve sent this issue to my hosting provider as well, they wrote:The browser is saying there’s a redirecting circle.
Redirecting can be caused by the followings:
– domain redirecting (this is not relevant)
-.htaccess file (eg. rewrite or redirect rule)
– header.php
– javascript code in the browser.And they asked me to check it in different browsers, but this happens in case of 3 browsers, and I have checked it on 3 different pc-s.
To summarize, they couldn’t help.Do you have any other idea, what this can be?
Thanks a lot,
Anita -
AuthorSearch Results


