RuthVant
Forum Replies Created
-
Hmm, somethings isn’t right. Wherever I put the shortcode I get this message on the page
There has been a critical error on this website.
Asset Manager appears to be causing the problem
Forum: Plugins
In reply to: [WooCommerce] Quickbooks and pay on account syncHello, I’ve already asked Quickbooks Sync and they can’t answer the question. I will put in a support ticket at Woocommerce.
Thank you
Thanks, a sneaky space at the bottom of my functions.php file was causing it.
Forum: Plugins
In reply to: [Automatic Responsive Tables] The update stopped working the responsive tableI’m having the same problem.
Updated to latest version
All my tables turned red and blue, so I went to settings to change the styles. As soon as I activated styles and apply to all tables, all of the table vanished on Mobile.Forum: Plugins
In reply to: [WooCommerce] Category Pagination on nonexistent productsHi
We have cleared the cache many, many times and it doesn’t solve this.
The code snippet for All in One SEO as follows
add_filter( ‘aioseop_robots_meta’, ‘change_robots_meta_value’ );
function change_robots_meta_value( $robots_meta_value ) {
if( is_product_category( ‘PYO’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
if( is_product_category( ‘Light Engines’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
if( is_product_category( ‘LED Count’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
if( is_product_category( ‘Micromoles’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
if( is_product_category( ‘Size’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
if( is_product_category( ‘Wavelength’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
if( is_product_category( ‘Thermal’ ) && is_paged() ) {
$robots_meta_value = ‘noindex’;
}
return $robots_meta_value;
}Forum: Plugins
In reply to: [WooCommerce] Category Pagination on nonexistent productsHello
I’m not sure why these paginated pages are begin created when products don’t exist in a category and only subcategories are set to show for the parent. However we have used noindex on them with All in One SEO’s API to stop the being found.
Forum: Plugins
In reply to: [WooCommerce] Category Pagination on nonexistent productsI have found a way around this, but it’s not a plugin.
I’ve used All in One SEO’s API
add_filter( ‘aioseop_robots_meta’, ‘change_robots_meta_value’ );
function change_robots_meta_value( $robots_meta_value ) {
if( is_product_category( ‘PYO’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
if( is_product_category( ‘Light Engines’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
if( is_product_category( ‘LED Count’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
if( is_product_category( ‘Micromoles’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
if( is_product_category( ‘Size’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
if( is_product_category( ‘Wavelength’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
if( is_product_category( ‘Thermal’ ) && is_paged() ) {
$robots_meta_value = ‘noindex,nofollow’;
}
return $robots_meta_value;
}Forum: Plugins
In reply to: [The Events Calendar] NO EVENTS AT THIS TIMEIt’s a site I inherited it is using a theme VanJones that is child to Eventmana.
The problem only occurred with the latest update to “The Events Calendar” its using Events Tickets, Events Tickets Plus.
Also have some templates in the theme, such as content-caledar.php, content-calendar-table.php
But they look like part of the Van-Jones theme.
I don’t have a login for the pro plugins as the previous user is not available.
The live site is working just fine on older version https://www.matchdayhospitality.com/
Forum: Plugins
In reply to: [The Events Calendar] NO EVENTS AT THIS TIMESorry, this is not activated and not the problem I’m afraid.
Forum: Plugins
In reply to: [The Events Calendar] NO EVENTS AT THIS TIMEUnfortunately this is not the same for me, there appears to be an issue with the timestamp. The events showing on the home page are show 1st January 1970, but if you view them in the single event page the date is correct.
I’ve tried changing the WordPress version to US English and the time zone to new york, but no luck.
I’ve deactivated all plugins except the events and woocommerce, no change.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] archive-podcast.phpJust to add that my other archive templates are working correctly, it’s just this one that won’t.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] archive-podcast.phpHello, I have done as above and I am using my own theme.
Forum: Plugins
In reply to: [WooCommerce] Group Product TableSorry, it had to be changed in two places. Now working.
Forum: Plugins
In reply to: [WooCommerce] Zoom Image sizeThanks, that is what I am trying to avoid! Especially as there is more than one user adding content so I can’t control the upload size of any new products that are added manually.
If there isn’t any other way then I will have to reload hundreds of photos ??