Forum Replies Created

Viewing 15 replies - 391 through 405 (of 1,249 total)
  • Plugin Contributor Nick C

    (@modernnerd)

    Thanks for the link. 🙂

    Your “Isabelle” theme’s style.css file includes some CSS that’s adding the extra icons:

    /* .social-icons */
    ul.social-icons li {float: left; border: none !important; list-style: none;}
    .social-twitter,
    .social-facebook,
    .social-email,
    .social-rss,
    .social-google,
    .social-flickr,
    .social-linkedin,
    .social-youtube,
    .social-vimeo,
    .social-instagram,
    .social-pinterest,
    .social-bloglovin,
    .social-tumblr {display: block; width: 48px; height: 48px; float: left; background: url('images/social_icons.png') no-repeat; text-indent: -9999px;}
    .social-twitter {background-position: 0 0; background-color: #ccc; margin-right: 10px;}
    .social-facebook {background-position: 0 -68px; margin-right: 10px;}
    .social-email {background-position: 0 -136px; margin-right: 10px;}
    .social-rss {background-position: 0 -204px;}
    .social-google {background-position: 0 -272px; margin-right: 10px;}
    .social-flickr {background-position: 0 -340px; margin-right: 10px;}
    .social-linkedin {background-position: 0 -408px; margin-right: 10px;}
    .social-youtube {background-position: 0 -476px; margin-right: 10px;}
    .social-vimeo {background-position: 0 -544px; margin-right: 10px;}
    .social-instagram {background-position: 0 -612px; margin-right: 10px;}
    .social-bloglovin {background-position: 0 -680px; margin-right: 10px;}
    .social-pinterest {background-position: 0 -749px; margin-right: 10px;}
    .social-tumblr {background-position: 0 -807px; margin-right: 10px;}

    You could take a backup of the theme and then try removing that code yourself, or approach whoever developed your theme/site for help making this change.

    I retested the plugin and LinkedIn share previews are still working for me:

    LinkedIn share preview

    If you see “cannot display preview” or similar when sharing to LinkedIn, that points to an issue with LinkedIn failing to access your site, as opposed to an issue with this plugin.

    You could try reporting the issue to LinkedIn: https://www.linkedin.com/help/linkedin/ask

    @previlla Your site took ~30 seconds to load for me, so it may be that LinkedIn’s request timed out.

    Thanks for reporting this, @snowbelly.

    You could try visiting/resaving your Settings → Permalinks page after updating the plugin.

    The plugin slugs changed in a recent update, and resaving permalink settings should ensure that change is reflected on your pages and in WordPress’s internal rewrite rules.

    Plugin Contributor Nick C

    (@modernnerd)

    Hi, Jeannie!

    Are you able to link to a page where this is visible and explain what steps you took to customise the widget? I’d be happy to take a look for you.

    Plugin Support Nick C

    (@modernnerd)

    Thanks for sharing your theme name. The plugin is not compatible with the Sahifa theme. The plugin works only with themes where the Genesis framework is the parent theme.

    You can deactivate Genesis Simple Edits to remove the compatibility message if you’d like to continue using Sahifa.

    Plugin Support Nick C

    (@modernnerd)

    Thanks for sharing the error message, and I’m sorry for the confusion over this.

    This message will appear if you do not have a Genesis child theme active. You can activate a Genesis child theme to clear the message and return the Simple Edits link to the sidebar.

    Alternatively, you can disable the Simple Edits plugin if you’re no longer using a Genesis child theme (it is intended for Genesis themes only and will have no effect on other themes).

    Plugin Support Nick C

    (@modernnerd)

    @researcher2016 Thanks for your report. I just tested the plugin with WordPress 4.8 and all fields at Genesis → Simple Edits are still working for me.

    Please feel free to share more information, such as steps to reproduce the issue with all other plugins disabled, and the name of your current active theme. I’d be happy to take another look.

    You’re welcome, Aimee! Glad you got it up and running.

    Plugin Contributor Nick C

    (@modernnerd)

    Hi, Leanne!

    A few things you can try:

    – Double-check that “Open links in new window?” is still active for that widget.

    – Be sure you’ve cleared any caching plugins and services after making the change to your widget settings.

    – Try disabling other plugins temporarily. It’s the WordPress equivalent of, “have you tried turning it off and on again?” but sometimes it’s worth a shot, just in case there’s a plugin conflict.

    Have you tried removing the leading slash? So this:

    return 'gfm-press/books';

    Instead of:

    return '/gfm-press/books';

    After clearing caches and visiting Settings → Permalinks again after making this change, you should find you see the books page instead of a 404 when you visit example.com/gfm-press/books/ (replacing example with your domain).

    If you see another page, the Query Monitor plugin can be helpful for debugging. It has a section called Rewrite Rules that’s accessible from the Toolbar. When your permalinks are set correctly, visiting example.com/gfm-press/books/ will show this in the Query Monitor Rewrite Rule table:

    Query monitor output showing a matched rule of gfm-press/books/?$

    If you see something else, the matched rule you see may help you to find what page is conflicting.

    Plugin Support Nick C

    (@modernnerd)

    If you can network deactivate the plugin and only activate it on the Genesis sites individually, that would be a good approach (it will prevent the plugin logic from running at all if Genesis isn’t active).

    Otherwise, you could try creating a new plugin folder named ‘genesis-remove-sidebar-nag’ containing a single file named ‘plugin.php’ with the content below. Network-activating that plugin should remove the notification on all sites.

    <?php
    /**
     * Plugin Name: Genesis Simple Sidebars Remove Nag
     * Plugin URI: https://wordpress.org/support/topic/dismiss-requirement-message/
     * Description: Removes the activation nag for Simple Sidebars.
     *
     * Version: 0.1.0
     * License: GPLv2+
     * License URI: http://www.opensource.org/licenses/gpl-license.php
     *
     * @package genesis_remove_sidebar_nag
     */
    
    add_action( 'plugins_loaded', 'genesis_simple_sidebars_remove_nag', 11 );
    /**
     * Remove the notice that Genesis Simple Sidebars displays if Genesis is not active.
     *
     * @return void
     */
    function genesis_simple_sidebars_remove_nag() {
    	if ( ! function_exists( 'Genesis_Simple_Sidebars' ) ) {
    		return;
    	}
    	remove_action( 'admin_notices', array( Genesis_Simple_Sidebars(), 'requirements_notice' ) );
    }
    

    Hi, Aimee, and thanks for the kind words about the plugin!

    The filters are:

    – genesis_author_pro_archive_slug
    – genesis_author_pro_author_slug
    – genesis_author_pro_book_slug
    – genesis_author_pro_series_slug
    – genesis_author_pro_tag_slug

    You can see examples of using some of the slug filters here:

    https://wordpress.org/support/topic/change-page-for-book-archive/
    https://wordpress.org/support/topic/series-became-book-series/

    Plugin Support Nick C

    (@modernnerd)

    Hi, @talkcity! It looks like you’ve posted in this topic for support questions related to the Genesis Simple Hooks plugin. If you need help aligning your ad in a non-Genesis theme that does not use Simple Hooks, you could try posting in the “Everything Else” forum:

    https://wordpress.org/support/forum/miscellaneous/

    Hi, @wplion!

    The books in the demo at https://demo.studiopress.com/author/ are featured images where text has been added to a stock photo to create a book cover. You would need to replace those with your own book cover images; the Author Pro theme or plugin does not composite a book cover for you automatically from your featured image and book title.

    There are some free online tools you can use to create great book cover images that might be useful to you, though:

    https://www.canva.com/create/book-covers/
    https://spark.adobe.com/make/book-cover-maker/

    Plugin Contributor Nick C

    (@modernnerd)

    You’re welcome! Glad to hear it helped.

Viewing 15 replies - 391 through 405 (of 1,249 total)