Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Social Icons] Phone URIThe phone link will only work on devices with telephone capabilities.
If your browser isn’t set up to handle the
tel:protocol or if your device doesn’t have telephone capabilities, you’ll just see a blank window when you click the phone link.Forum: Plugins
In reply to: [Simple Social Icons] Phone URIHi Peter
I see the correct number on desktop and mobile now at https://mentalhealthcarerstas.org.au/.
If the blank page you mention is on the back end, I recommend checking your PHP error log for further information as to the cause.
Forum: Plugins
In reply to: [Simple Social Icons] Phone URIHi, @peterfz30.
Please could you try entering just the phone number into the Phone URI field, without the ‘tel:’ prefix?
In my tests that produces the correct number with a tel: prefix on the front end.
Forum: Plugins
In reply to: [Simple Social Icons] Activation errorHi, @filipostrowski.
The error suggests an old version of PHP is active on your server, such as PHP 5.2.
If you ask your host to update to a supported version of PHP, such as PHP 5.6+ (but ideally at least PHP 7.1), you will no longer see this error. http://php.net/supported-versions.php
- This reply was modified 7 years, 5 months ago by Nick C.
Forum: Plugins
In reply to: [Genesis Simple Share] Pinterest – Changing the image + description pulledHi, @temperancerose.
Thanks for using Genesis Simple Share!
You’d need to edit the
get_icon_outputfunction inplugins/genesis-simple-share/lib/front-end.phpto make the modifications you describe.That function sets the image URL and description used for each button:
$image = ( $image = genesis_get_image( array( 'format' => 'url', 'size' => 'full' ) ) ) ? $image : $this->get_first_image();$description = the_title_attribute( array( 'echo' => false ) );You could modify those with an if statement to set the imgae to be the first image and the description to be the data-pin-description attribute for the Pinterest button. For example, for the image:
if ( 'pinterest' === $icon ) { $image = $this->get_first_image(); } else { $image = ( $image = genesis_get_image( array( 'format' => 'url', 'size' => 'full' ) ) ) ? $image : $this->get_first_image(); }If you’d like further help with this or other plugin and theme customisations, I recommend making use of the StudioPress community resources here: https://my.studiopress.com/community/
Hi, @mommysplurge.
A couple of things you can try:
– Disable all other plugins in case of a conflict. (It’s possible a feature that’s only enabled for admin users is conflicting with that page.)
– Check your site’s PHP log for fatal errors. (A fatal error could prevent the page from loading and give you a gray screen.)Forum: Plugins
In reply to: [Genesis Portfolio Pro] integration with Co-Authors Plus@judodesign I agree with Susan that this seems specific to Co-Authors Plus rather than the Portfolio plugin.
I recommend following up with the plugin developer, or posting in the StudioPress forum, Slack group, or Facebook group if you’d like further help with the customisation: https://my.studiopress.com/community/. I hope you’re able to figure it out!
Forum: Plugins
In reply to: [Genesis Simple FAQ] Loss of faq categories in the faq post edit areaYou’re welcome! Thanks for letting us know.
Forum: Plugins
In reply to: [Genesis Simple FAQ] Loss of faq categories in the faq post edit areaThank you for this report, @judodesign.
This will be fixed in a plugin update. For now, you could apply the one-line change here if you’re comfortable editing the plugin code:
https://github.com/studiopress/genesis-simple-faq/pull/48/files
The file you’ll need to edit is at
genesis-simple-faq/includes/class-gs-faq-taxonomy.php.Forum: Plugins
In reply to: [Genesis Simple FAQ] Toggle Not Working Outside LoopHi, @fortyfivecreative.
For now you would need to edit the plugin to load the dependencies even if shortcodes appear outside the main content.
That’s currently controlled in the ‘load_dependencies’ method here.
You could change this:
// Load assets if in post content. if ( has_shortcode( $content, 'gs_faq' ) ) { Genesis_Simple_FAQ()->assets->enqueue_scripts(); }To this:
Genesis_Simple_FAQ()->assets->enqueue_scripts();There’s an issue to look into this in a future plugin update, but I don’t have a timeline for an official fix just yet. https://github.com/studiopress/genesis-simple-faq/issues/34
Forum: Plugins
In reply to: [Simple Social Icons] custom colors on footer widget not working in ver 3Thanks for the custom code you’re using, @peterlaz.
You can try adjusting this code to use the ID of the social widget instead. For example:
#simple-social-icons-4 li.ssi-facebook a { background-color: #3b5998 !important; } #simple-social-icons-4 li.ssi-gplus a { background-color: #dd4b39 !important; } #simple-social-icons-4 li.ssi-instagram a { background-color: #9b3f71 !important; } #simple-social-icons-4 li.ssi-twitter a { background-color: #00aced !important; } #simple-social-icons-4 li.ssi-youtube a { background-color: #bb0000 !important; }Forum: Reviews
In reply to: [Simple Social Icons] Super simple yet versatileThanks so much for your kind review, @smit_ralph!
Forum: Plugins
In reply to: [SEO Data Transporter] Genesis to SEOPressGreat, thanks for letting us know!
Forum: Plugins
In reply to: [Genesis Portfolio Pro] Change URL Slug for Portfolio Type@goldmaverick A few things:
1. The portfolio type slug should be different to the portfolio slug. You have both as ‘work’ at the moment. For example, you could change ‘work’ to ‘work-category’ for the portfolio type slug (the first ‘work’ in your code above):
$args['rewrite']['slug'] = 'work-category';And leave the portfolio slug (the second ‘work’ in your code) as ‘work’.
2. Make sure the plugin containing your code is active.
3. Visit the Settings → Permalinks page after you have made your code changes to ensure the new URLs take effect.
Forum: Plugins
In reply to: [SEO Data Transporter] Genesis to SEOPressHi,
Thanks for your feature suggestion. For now you could try:
1. Migrating from Genesis SEO to Yoast SEO using the SEO Data Transporter plugin.
2. Migrating the Yoast SEO data to SEOPress using their guide here:
https://www.seopress.org/support/guides/import-post-terms-metadatas-yoast-seo-seopress/