Nick C
Forum Replies Created
-
Hi, Nick.
I recommend following up with your theme developer or in the WooCommerce forum, as this forum is for the Genesis Connect plugin.
(For what it’s worth I do see products in IE 11: https://d.pr/i/8YyifO and on iPhone: https://d.pr/i/TRNDjg, so it could be specific to your devices or network.)
@ndgm2016 I currently see pictures on your product pages in Firefox and Chrome: https://www.mfctech.uk/product/1080p-nvr-kit-8-camera-1-4-inch-cmos-app-support-25m-night-vision-p2p-support-ip66-waterproof-sata-white/
If you do not see them, you could ask your theme developer for help and mention which browsers are not showing the images.
If you’d like further advice, I recommend posting in the WooCommerce forum: https://wordpress.org/support/plugin/woocommerce#new-post
This topic is for issues relating to the Genesis Connect plugin only.
You’re welcome, @dlmweb! Thanks for following up to let us know this helped.
Thanks for this report.
Genesis Connect 0.9.10 removed the Genesis Archive Headline and Intro Text from product taxonomy pages. This was to prevent the product headline being duplicated if an Archive Title is set and your theme does not remove the WooCommerce Product title on archive pages:
https://github.com/copyblogger/genesis-connect-woocommerce/issues/4
There’s a proposal in a pull request to re-instate the Archive Title. For now if you would like to use the Genesis Archive Title and Intro in place of the WooCommerce product title and category description, you can:
1. Add this code to your theme’s functions.php to reinstate the Genesis title and archive intro on product archives and remove the WooCommerce title:
add_action( 'genesis_before', 'custom_woocommerce_category_titles' ); /** * Reinstate Genesis page title and description on WooCommerce category archives. */ function custom_woocommerce_category_titles() { if ( class_exists( 'WooCommerce' ) && is_product_category() ) { add_filter( 'woocommerce_show_page_title', '__return_false' ); remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description' ); add_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 ); } }2. You would then fill in the Archive Intro Text and Archive Headline for your product category if it’s not already filled.
Alternatively, instead of making this change, you can add the intro text to the Category Description instead of the Archive Intro.
If the WooCommerce product category title does not then appear above the category description, make sure that your theme does not use this filter in its functions.php:
add_filter( 'woocommerce_show_page_title', '__return_false' );If anyone needs further help with this, I recommend contacting StudioPress support with a link to your category archive page, as well as a description or link to a screenshot of your product category archive settings.
You’ll find the help form here: https://my.studiopress.com/help/
Forum: Plugins
In reply to: [Genesis Portfolio Pro] URL slug doesn’t work and error@luciepellier Is your server running PHP 5.3 or higher? You may see the error you mentioned if running PHP 5.2.
If you’re running PHP 5.2, asking your web host to update would be a good idea.
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Sidebar selectionGreat! Thanks for sharing your solution here.
Forum: Plugins
In reply to: [Osom Author Pro] urlHi, @vicentedepablo
You’ll find some options for changing the default book URLs in this thread:
https://wordpress.org/support/topic/change-location-of-books-slug/
Hope that helps!
Great to hear, @flabernardez! Thanks for following up.
Forum: Plugins
In reply to: [Genesis Simple FAQ] URLs within FAQ answers brokenThanks for this report, @hifidesign!
I haven’t been able to reproduce this so far with Genesis Simple FAQ, Genesis Sample, and the same content and links as your first question (click images to enlarge):
I notice that your theme also appears to include code that modifies the
aria-controlsattribute:If you switch theme temporarily or on a staging server, does the issue go away? You may wish to review your theme’s JavaScript if so.
From what I can see of https://yypkaqh3belx66349sahr9zb-wpengine.netdna-ssl.com/wp-content/themes/allied/assets/scripts/allied-pro.js, it looks like this code:
$('[role="tablist"] a').each(function() { $(this).attr( 'aria-controls', $(this).attr('href').substring(1) ); });Is applying to all tablists in error.
It looks like the intention was to scope it to tablists inside the
.feature-slideselement, but the$containerprefix may have been omitted from the start of the jQuery selector by mistake.Forum: Plugins
In reply to: [Genesis Portfolio Pro] Change URL Slug for Portfolio TypeYou can change the
portfolio-typeslug by following these steps:1. Create a new folder in your
/plugins/directory calledgenesis-portfolio-pro-custom.2. Create a new file in that folder named ‘plugin.php’.
3. Add this content to that file:
<?php /** * Plugin Name: Genesis Portfolio Pro Custom Slugs * Description: Alters Genesis Portfolio slugs. * Version: 0.1.0 */ namespace GPPCS; add_filter( 'register_taxonomy_args', 'GPPCS\portfolio_type_args', 10, 2 ); /** * Change Genesis Portfolio Type arguments. * * @param array $args Taxonomy arguments. * @param string $taxonomy Current taxonomy. * @return array New taxonomy arguments. */ function portfolio_type_args( $args, $taxonomy ) { if ( 'portfolio-type' === $taxonomy ) { $args['rewrite']['slug'] = 'project-type'; } return $args; }4. Change ‘project-type’ to whatever you wish to use instead of
portfolio-type. This should be a unique string that is not used for another post type or taxonomy.5. Activate the ‘Genesis Portfolio Pro Custom Slugs’ plugin.
6. Visit the Settings → Permalinks page to flush your rewrite rules.
If you also wish to change the default ‘portfolio’ slug for the main Portfolio archive page, you can add this code to the bottom of that file and repeat steps 4 and 6:
add_filter( 'register_post_type_args', 'GPPCS\portfolio_args', 10, 2 ); /** * Change Genesis Portfolio arguments. * * @param array $args Post type arguments. * @param string $post_type Current post type. * @return array Filtered post type arguments. */ function portfolio_args( $args, $post_type ) { if ( 'portfolio' === $post_type ) { $args['rewrite']['slug'] = 'project'; } return $args; }I have also made a feature request at https://github.com/copyblogger/genesis-portfolio-pro/issues/20 for an option to the admin area to make renaming these slugs easier.
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Genesis Portfolio Pro — Where’s the shortcode?Thank you for asking about a shortcode addition to Genesis Portfolio Pro.
I can’t promise if or when this will be added, but I wanted to let you all know that your requests have been noted! https://github.com/copyblogger/genesis-portfolio-pro/issues/13
Forum: Plugins
In reply to: [Simple Social Icons] Icon Suggestions: Amazon & GoodreadsThanks for your requests, everyone! I can’t make any promises about new icons, but wanted to say that I have recorded these votes at https://github.com/copyblogger/simple-social-icons/issues/65.
Sorry to hear about the blank pages.
You can re-enable Genesis Connect and then check that your WooCommerce cart and checkout page is still set correctly here:
WooCommerce → Settings → Checkout → ‘Checkout pages’
If cart and checkout pages are already set, I recommend:
– Toggling both the cart and checkout drop-down to another page and re-saving your settings.
– Toggling them back to the original cart and checkout pages and re-saving again.(For anyone that does not yet have a cart or checkout page, you can first create those from WooCommerce → Status → Tools → Install WooCommerce pages.)
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Deprecated Notice: woocommerce_get_page_id@romulohenricco This is fixed in 0.9.10. That version is currently unreleased, but you can download it here if you wish: https://downloads.wordpress.org/plugin/genesis-connect-woocommerce.0.9.10.zip
@noddemix Thank you for this report.
If you delete the widgets, their content is removed from the
widget_simple-social-iconsrow in thewp_optionstable.If you only move them to the inactive widget area, their settings are preserved in
widget_simple-social-iconsin case they are later restored.Likewise, if you deactivate or delete the plugin when there are Simple Social Icons widgets in the active or inactive widget area, those settings are currently preserved. It looks like there are two things we could improve here:
1. Inline CSS for inactive widgets should not be output to the page as it currently is.
2. If the plugin is deleted (rather than deactivated), widgets and thewidget_simple-social-iconscould be removed.I’ve opened issues for both of those suggestions here:
– https://github.com/copyblogger/simple-social-icons/issues/63
– https://github.com/copyblogger/simple-social-icons/issues/64Thank you again for taking the time to report this.