reviewsquirrel
Forum Replies Created
-
Forum: Plugins
In reply to: [Content Expiration & Redirect] Expired pages will only return HTTP 404Thanks @luisten, excellent eagle eyes ?? I made the tweak as per your suggestion
Forum: Plugins
In reply to: [Schema] Schema output not updatingIt works, schema markup is now showing the updated/modified information. Hesham, you’re an absolute legend mate!
Forum: Plugins
In reply to: [Content Expiration & Redirect] Expired pages will only return HTTP 404Sorry to hear that Arno, but what did you set the redirect to URL as? Redirect to URL should be 200-OK and you need to specify its URL including protocol, e.g. https://www.google.com not https://www.google.com
Forum: Plugins
In reply to: [Schema Removal] Adding empty valuesCan confirm that’s fixed – great stuff Hesham!
Forum: Plugins
In reply to: [Schema] Fatal error: Call to a member function get() on nullThat fixed it Hesham, the fatal error is no more as after updating to 1.5 I was able to re-activate the plugin.
Forum: Reviews
In reply to: [Content Expiration & Redirect] redirect goes to 404 pageHi Tim,
I did not see any support threads from you.
In testing the plugin it always redirected properly, linking to both internal pages and external pages as expected.
You sure the page you redirect to is there, is 200OK? Is the URL formatted properly, e.g. https://wp.com?
Forum: Plugins
In reply to: [Content Expiration & Redirect] Do you plan to expand functionality?We’re not looking to expand functionality at this stage. However these are really great suggestions for a future release thank-you!
Forum: Plugins
In reply to: [Simple Social Icons] php snippet available for Simple Social Icons?Forgot to mention, you need to add the Genesis Simple Share Shortcode to your functions.php for the above to work. So:
1. Add this to your functions.php
//* Genesis Simple Share Shortcode add_shortcode( 'social-icons', 'gss_shortcode' ); function gss_shortcode() { global $Genesis_Simple_Share; $icons = ''; if ( function_exists( 'genesis_share_get_icon_output' ) ) { $icons = genesis_share_get_icon_output( 'gss-shortcode', $Genesis_Simple_Share->icons ); } return $icons; }
Source/credit https://gist.github.com/nickcernis/7f28330b4ed2f2e22a2c
2. Add the shortcode in your page/post, for example
[social-icons]
or
<?php echo do_shortcode('[social-icons]'); ?>
Forum: Plugins
In reply to: [Simple Social Icons] php snippet available for Simple Social Icons?Try this, it worked for me
<?php echo do_shortcode('[social-icons]'); ?>