Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Osom Author Pro] Change layout to add sidebar for tag cloudHi, @virtualwayva!
You can check if the current page is the books archive like this:
is_post_type_archive( 'books' )Or check that you’re on an individual book page like this:
is_singular( 'books' )These may also be useful:
– Book author archive:
is_tax( 'book-authors' )
– Book series archive:is_tax( 'book-series' )
– Book tag archive:is_tax( 'book-tags' )Forum: Plugins
In reply to: [Genesis Simple FAQ] Including NinjaForm in ContentThanks for this report, @ian101, and I’m sorry for the shortcodes failing to render.
This will be corrected in a future update, but you are welcome to try this pre-release version of the plugin for now if you wish, which includes a fix for the issue.
Forum: Plugins
In reply to: [Genesis Simple Share] *FATAL* downloadable font: rejected by sanitizerYou’re welcome to send your link to support [at] studiopress [dot] com and reference this topic.
It may be that your web server is not configured to serve eot files with the correct mime type, or it could be an issue with the font file that has not emerged until now, but the link should tell us more.
Hi, @snowbelly!
Please could you confirm that your WooCommerce setup and configuration has been completed? Missing those setup steps is the most common cause of blank pages we see.
You can learn how to complete the WooCommerce setup steps here in case it helps:
https://wordpress.org/support/topic/site-content-disappears-for-real/#post-9342125
If that does not solve this, it would also be helpful to share PHP error logs. You can share them with the StudioPress support team at https://my.studiopress.com/help/.
Forum: Plugins
In reply to: [Genesis Simple Share] *FATAL* downloadable font: rejected by sanitizerHi, @funsail!
It’s not clear from your report which application reported this error, but there are no known issues with the font files that we’re aware of — this may be a false rejection by whatever browser or tool is being used.
If you have further information or steps to reproduce this error, please feel free to share more.
Forum: Plugins
In reply to: [Genesis Simple Share] Pinterest, G+ and SU Share Buttons Not workingHi, @sweetcoralice!
It looks like your site may have multiple sharing plugins that could be conflicting. I don’t see Simple Share active on your site at the moment, but I’m happy to take a look if you’d like to reactivate it.
If you’re happy with the other existing sharing plugins you have and they’re working for you, that’s fine too!
Forum: Plugins
In reply to: [Genesis Responsive Slider] slider proportions on mobile siteHi, Laura.
The site’s slider images are wide compared to their height, so the images will be cropped at narrow screen widths if you also want them to appear tall on mobile too. There is no way to make a very wide image also very tall on a narrow portrait screen without squashing it width-wise – it has to be cropped if you increase the height.
What you have now looks good to me (as a mobile visitor I would not know the images are wider), but if you wanted to reduce the cropping effect you could try one of:
– Making the original images taller so the ratio of height to width isn’t so high (this should reduce the amount cropped from the edges on mobile).
– Replacing the slider with a single image at mobile widths.
– Hiding the slider at mobile widths.If you’d like other ideas for altering the design, or if you need further help with CSS or PHP code for any design alterations, the StudioPress forums are worth visiting: https://www.studiopress.com/forums/.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] woocommerce_get_page_id is deprecatedThank you for the report, Juan! This is in our issue tracker and will be corrected in version 0.9.10.
Forum: Plugins
In reply to: [Genesis Responsive Slider] slider proportions on mobile siteHi, Laura!
You could try adding this CSS to your theme’s stylesheet, or at Appearance → Customize → Additional CSS:
@media only screen and (max-width: 1020px) { .inner-slider .inner-slider-item > div { background-size: auto !important; } }The image will then use more of the height of the slider area at smaller screen widths.
Forum: Plugins
In reply to: [Genesis Simple Share] You can hide the counter, but Is it still counting ??Hi Luis
Thanks for your kind words about the plugin!
Genesis Simple Share does not make requests to social networks with the counts disabled.
You can confirm this if you wish by using the Network tab in Chrome’s developer tools. With share counts enabled (the default), you can see the requests:
With the share counts hidden, the share count requests are also suppressed:
Forum: Plugins
In reply to: [Osom Author Pro] Google Ads Affiliate Links on the pageYou’re welcome, and glad you found the cause!
Jetpack suggests that you can disable the ads from the Jetpack → Dashboard area: https://jetpack.com/support/ads/.
If that doesn’t work, though, their support team will be able to help: https://jetpack.com/contact-support/?rel=support
Forum: Plugins
In reply to: [Osom Author Pro] Google Ads Affiliate Links on the pageHi, @suzyoo. Genesis Author Pro does not inject ads of any kind into your pages.
You could try:
– Disabling other plugins.
– Checking Genesis → Theme Settings → Header and Footer Scripts for any code that’s been added to that section.
– Reviewing recently altered theme and plugin files.
– Checking with your host that your server has not been compromised, as some hacks will inject ads into your plugins or theme files.I hope you’re able to get to the bottom of it! If I can help further, please let me know.
Forum: Plugins
In reply to: [Simple Social Icons] Duplicate IDsThanks for this report, @abrightclearweb.
There’s a fix in the plugin’s development branch that should solve this. You’re welcome to try it if you wish:
https://github.com/copyblogger/simple-social-icons/archive/develop.zip
It appends the widget ID to the ID attribute, which prevents the duplicate ID issue if you use it more than once on a page. I don’t have a timeline for the release of this, but I hope it helps for now. 🙂
@iuriem It lets you create short links that redirect to other URLs.
It’s useful for:
– Creating short links to long URLs that are easier to write, share, and remember.
– Masking affiliate links.
– Using as a personal link shortener instead of relying on a third-party service.Forum: Plugins
In reply to: [Simple Social Icons] Title Tag in output?Hi, @michamclain.
The plugin uses title tags within each SVG tag to assist with accessibility on some platforms. You can learn more here:
– https://css-tricks.com/accessible-svgs/
– https://www.sitepoint.com/tips-accessible-svg/You’re right that multiple title tags shouldn’t be used within the head of your document if you can help it, but using them within SVGs like this is fine. I hope that helps!