Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Simple Hooks] changes not saved, redirects to wp-admin/options.phpHi, @pixelarcher.
It sounds like the PHP code in the genesis_footer hook area may contain an error.
If you’ve reviewed it and it seems okay to you, feel free to post a screenshot or copy of the code here.
Forum: Plugins
In reply to: [Genesis Simple Edits] Meta shortcodes work for above content but not belowThanks for sharing the link, @tiger383.
Your custom theme will need to add the entry meta below blog posts before the meta contents can be changed to
[post_categories] [post_tags]via Simple Edits.If you have this code in your current theme, you could remove it to add the entry footer back:
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 ); remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 ); remove_action( 'genesis_entry_footer', 'genesis_post_meta' );Or add it to specific templates via:
add_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 ); add_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 ); add_action( 'genesis_entry_footer', 'genesis_post_meta' );Forum: Plugins
In reply to: [Genesis Simple Edits] Meta shortcodes work for above content but not belowHi, @tiger383!
Can you share a link to your site or reply with the name of the theme you are using, please? I’d be happy to take a look for you.
Forum: Plugins
In reply to: [Genesis Simple FAQ] JS not working in ACFHi, @shapal.
It looks like we’ve responded to you by email in StudioPress support. I hope it helped!
For others who see the same problem, Genesis Simple FAQ only enqueues its JavaScript if it detects an FAQ widget on the page or the
gs_faqshortcode in the main site content.If you’re using the shortcode elsewhere, such as in custom fields, you can enqueue the FAQ scripts on other pages by adding this code to your theme’s functions.php:
add_action( 'wp_enqueue_scripts', 'load_simple_faq_scripts' ); /** * Enqueue Genesis Simple FAQ scripts on all pages, even if no gs_faq shortcode is found in main content. * * @return void */ function load_simple_faq_scripts() { if ( class_exists( 'Genesis_Simple_FAQ' ) ) { Genesis_Simple_FAQ()->assets->enqueue_scripts(); } }Forum: Plugins
In reply to: [Genesis Responsive Slider] Slider not displaying without widget titleHi Richard
I’m able to add a Responsive Slider widget to News Pro’s Home Top widget area without a title. I tested with WordPress 4.8.1, News Pro 3.2.2, and Genesis Responsive Slider 0.9.5.
You could try removing the title and disabling all plugins to see if the slider area then appears. If it does, activating plugins one at a time may point to the plugin causing this.
You could alternatively add this CSS at Appearance → Customize → Additional CSS to hide the ‘dot’ title in the slider widget:
.genesis_responsive_slider .widget-title { display: none; }- This reply was modified 8 years, 8 months ago by Nick C.
Forum: Plugins
In reply to: [Simple Social Icons] Cannot have 2 widgets because of css in headHi @daymobrew, and thanks for the report.
You can see a similar issue filed for this here:
https://github.com/copyblogger/simple-social-icons/issues/8
I don’t have a timeline for a fix just yet, but please feel free to contribute your ideas or patches there if you wish.
I’m sorry to miss your request here, @kallym. Thank you for sharing the link to the solution you used.
Forum: Plugins
In reply to: [Genesis Simple Hooks] Compatibility with WordPress 4.8.1Simple Hooks is also working with WordPress 4.8.1.
If you do find issues, you’re welcome to report them in a new topic here, or in GitHub: https://github.com/copyblogger/genesis-simple-hooks/issues
Forum: Plugins
In reply to: [Genesis Simple Sidebars] Compatibility with WordPress 4.8.1Simple Sidebars 2.1.0 works with WordPress 4.8.1 in my tests.
You should see this reflected in the plugin info in a future plugin update. Sorry for any confusion in the meantime.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Why its not updated in 2 years?Please see https://wordpress.org/support/topic/not-updated-for-2-years-2/.
These forums are monitored, and bug reports and feature requests are welcome.
Forum: Plugins
In reply to: [AgentPress Listings] Search Widget dropdown display issueThe search widget drop-down options display based on the ‘count’ of Listings for each taxonomy term (terms with the most listings will appear first in each drop-down).
There is no AgentPress-specific filter to change the order, but you could filter on
get_terms, like this:add_filter( 'get_terms', 'custom_agentpress_term_sort_order', 10, 4 ); /** * Change AgentPress to sort taxonomy by ID instead of by count. * * @param array $terms Array of found terms. * @param array $taxonomies An array of taxonomies. * @param array $args An array of get_terms() arguments. * @param WP_Term_Query $term_query The WP_Term_Query object. * @return array */ function custom_agentpress_term_sort_order( $terms, array $taxonomies, array $args, $term_query ) { if ( is_admin() ) { return $terms; } if ( in_array( 'area', $taxonomies, true ) ) { $args['orderby'] = 'ID'; $args['order'] = 'ASC'; return $term_query->query( $args ); } return $terms; }Add the code to your active theme’s
functions.phpfile, then replace ‘area’ with your taxonomy slug as it appears in the Listings → Register Taxonomies section.You could repeat the second
ifblock for each taxonomy and specify theorderbyandordervalues for each term.- This reply was modified 8 years, 8 months ago by Nick C.
Forum: Plugins
In reply to: [Genesis Simple Edits] remove a footer from imagely ansel themeYou’re welcome, Marc!
Either of the CSS snippets you’ve been offered will work here. Neither one is better in this case.
Forum: Plugins
In reply to: [Osom Author Pro] Publication date year onlyHi, @vayu!
You could filter the date format for books only, like this:
add_filter( 'pre_option_date_format', 'custom_author_pro_date' ); /** * Use the year only for book publish dates. * * @param string|bool $date The original date formatting string. * @return string|bool */ function custom_author_pro_date( $date ) { if ( ! is_admin() && 'books' === get_post_type() ) { return 'Y'; } return $date; }Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Sidebars brokenWell done, Deb, and you’re welcome! The product page now looks good to me.
Forum: Plugins
In reply to: [Genesis Simple Edits] remove a footer from imagely ansel themeHi, @grosloulou!
You could hide the footer with CSS if you wish:
1. Visit Appearance → Customize → Additional CSS.
2. Add this code to the CSS area:.site-footer { display: none; }3. Save your changes.
The grey footer bar will then no longer be visible.