Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Responsive Slider] Compatible with WordPress 5?@jeffrey2915 This plugin is working with WordPress 5.1 in my tests.
As WordPress itself recommends, you should make a backup of your site before updating WordPress. We don’t anticipate any issues with this plugin during the update to 5.1, but it’s helpful to be able to roll back if you need to.
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Sort order breaks when using order fieldHi, @babalucas.
I haven’t been able to reproduce this issue so far.
The URL above isn’t loading for me to review, but there are some things you can check:
– Remove any CSS customizations that have been made to the portfolio page, particularly those that could affect the order of elements.
– Disable all other plugins temporarily.
– Disable any caching or database caching on your server.
– Clear your local browser cache.Forum: Plugins
In reply to: [Genesis Portfolio Pro] Show portfolio publications that I want, not allThe problem is that I deleted the page (Portfolio) within the wordpress editor. Could the page be visible in the editor?
The plugin does not create an editable portfolio page. It adds a portfolio archive at
/portfolio/, but that page is not editable in WordPress.If you visit
/portfolio/and see a 404 error even with the plugin active, you can visit the Settings → Permalinks page to refresh your site’s rewrite rules.Forum: Plugins
In reply to: [Genesis Simple Hooks] Call to undefined function mysql_real_escape_string()No problem at all! Thanks for letting us know.
Forum: Plugins
In reply to: [Genesis Simple Hooks] Call to undefined function mysql_real_escape_string()Thanks for confirming, Tom. I’ll mark it as resolved. (I don’t have a way to delete the topic, but it could be useful for others to know that errors coming from the plugin can come from code added in the admin area rather than plugin code.)
Forum: Plugins
In reply to: [Genesis Simple Hooks] Call to undefined function mysql_real_escape_string()Hi, @tomchubb.
Genesis Simple Hooks doesn’t appear to use
mysql_real_escape_string: https://github.com/studiopress/genesis-simple-hooks/search?q=mysql_real_escape_string&unscoped_q=mysql_real_escape_stringYou could check the plugin page at Genesis -> Simple Hooks in case someone has added that function in the code snippets there? You could then update the code to use the new function you mentioned.
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Show portfolio publications that I want, not allSorry to miss your original request, @ayrpin.
If you are using the Portfolio widget to display items on your homepage, you can choose to display one portfolio type from the ‘Portfolio Type’ drop-down in the widget settings to exclude other types:

You could:
1. Create a new portfolio type called “Public”.
2. Edit the portfolio items you want to be visible and give them the Public type.
3. Use the drop-down in the widget settings to show only the Public items.To exclude portfolio items on your
/portfolio/archive, you would need to use a filter such as this one.Forum: Plugins
In reply to: [Genesis Portfolio Pro] 404 on archive pageHi, Dominic.
Please could you visit the Settings -> Permalinks page, then check your portfolio archive and item pages again?
Visiting that page refreshes your WordPress rewrite rules, which is often enough to fix the 404 issue you describe.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Deprecation warning on PHP 7.2You’re welcome, Anthony!
I’m presuming there would be more work involved than simply swapping over the plugin to this new supported version?
Swapping slider plugins typically involves setting up the new slider settings and may require some CSS adjustments. It’s not usually a huge amount of work but it’s not automatic either.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Deprecation warning on PHP 7.2@ahortin It sounds like the site may be using an old version of the Genesis Slider plugin (as opposed to Genesis Responsive Slider).
An old version of that plugin used to use the constructor you mention: https://plugins.trac.wordpress.org/browser/genesis-slider/tags/0.9.5/plugin.php#L199
But no longer does: https://plugins.trac.wordpress.org/browser/genesis-slider/tags/0.9.7/plugin.php#L200
The original Genesis Slider plugin is no longer available to download and will not receive further updates, but patching the plugin in the way you’ve done is a good way to avoid that warning.
If your client would like to continue receiving plugin updates for their slider plugin, moving to an actively developed slider plugin in the future would be worth considering. https://wordpress.org/plugins/tags/wordpress-slider/
Forum: Plugins
In reply to: [Genesis Simple Share] Problems with simple share icons@ollygreen I see 403 forbidden errors for JavaScript files the plugin needs in order to display the buttons: https://www.aureavega.com/wp-content/plugins/genesis-simple-share/lib/assets/js/sharrre/jquery.sharrre.min.js?ver=0.1.0
You could check those files are present, and check your server disk permissions.
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Archive Intro@microbe If this is for the
/portfolio/page itself (rather than one of the/portfolio-type/pages), you can try this instead of the above code:add_action( 'genesis_meta', 'custom_filter_archive_intro_text' ); function custom_filter_archive_intro_text() { global $wp_embed; add_filter( 'genesis_term_intro_text_output', array( $wp_embed, 'autoembed' ) ); add_filter( 'genesis_term_intro_text_output', 'do_shortcode' ); add_filter( 'genesis_cpt_archive_intro_text_output', array( $wp_embed, 'autoembed' ) ); add_filter( 'genesis_cpt_archive_intro_text_output', 'do_shortcode' ); }Forum: Plugins
In reply to: [Genesis Portfolio Pro] Archive Intro@microbe You can add this to your active theme’s
functions.phpso that shortcodes and oembeds will be processed:add_action( 'genesis_meta', 'custom_filter_archive_intro_text' ); function custom_filter_archive_intro_text() { global $wp_embed; add_filter( 'genesis_term_intro_text_output', array( $wp_embed, 'autoembed' ) ); add_filter( 'genesis_term_intro_text_output', 'do_shortcode' ); }Forum: Plugins
In reply to: [Genesis Portfolio Pro] Show portfolio type in portfolio archive@nickreckless I replied to the separate thread you opened at https://wordpress.org/support/topic/link-to-portfolio-page-with-certain-type-selected/#post-11112331. I hope it helps!
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Link to portfolio page with certain type selectedHi, @nickreckless.
You could:
1. Add the same menu Business Pro adds to the main portfolio page (here) to the portfolio-type pages too. You could duplicate the Business Pro theme file
archive-portfolio.phpand name the duplicated filetaxonomy-portfolio-type.php. You will then need to modify this template so the links point to the other Portfolio types, instead of filtering entries on the current page.2. Link directly to each portfolio-type page from your header menu. Those portfolio-type pages will now have the menu your main portfolio page has.
If you require further help customising Business Pro, I recommend making use of the community resources here: https://my.studiopress.com/community/