dsbelousov
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Comments not showing upSame here, would love to know how to fix it please?!
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsYup, I did and it works. The problem (as initially reported in this thread) is that the older version does not scroll to the page section when the TOC item is clicked, your latest version fixes that, but breaks the UI. So, I can’t use it overall which is a pity ??
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsHi, I did download and install the plugin you have suggested but activating it has screwed up my page to the point that it does not render properly on the screen. I had to disable the plugin completely now ??
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsThanks Steven, I was wondering if you have had a moment to push the updated plugin into WordPress with that very minor issue fixed? THanks
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsJust wanted to check with you if there was a new version released? Thank you!
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsThanks, it is only a couple of days away, so I will wait for the update via the WordPress Plugins module.
Thank you!
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsGot it, do you know roughly when the official update should come out? Thank you!
Thanks Jeremy for the effort. I do however think that the numbers coming from Facebook are individual like counts and individual share counts. You can check my page here https://www.propertyresolved.com.au/the-journey-begins/ and you will be able to see that the SumoMe displayes those counts separately. I wish your plugin could also do it and it was a standard feature as part of the Jetpack install. For bloggers those 2 things are very different and important in their own way. Thanks
Great, that is exactly what I needed, thank you! What i have noticed however is that against the ‘Like’ button you show a number which I believe represents the number of times the blog post was shared, not liked.
Sorry for not being clear, – I would like to remove the old style ‘share’ button since I already have a new modern looking one. So if we look at your screenshot, it is number 3.
Thank you
Hi Jeremy, thanks a great deal, that has almost worked as I now have 2 FB share buttons, please see https://www.propertyresolved.com.au/the-journey-begins/
How can I remove the old style (i.e. official) FB share button, as I would like to keep the new, round style icons for all my social sharing for consistency?
Hi Jeremy,
Thanks for your advise, yet I cannot find the plugin that you have mentioned ‘FB Like & Share button for Jetpack’. I have searched both on www.remarpro.com and via a dashboard. I have used directy plugin name as well as tags and was not able to find it. Can you perhaps provide me with exact keywords that I should be using for a search or link to the plugin?
Thank you in advance
Thanks Jeremy, it worked. Any chance I can have the modern looking buttons to work with it? The “Official” buttons look very out-dated these days, at the same time the Facebook ‘Like’ button is absolutely a must for my blog (in fact this would be a must for any blog) as this is how you grow your audience. Please advise.
Hi Jeremy,
I am not sure why, but I still cannot get the ‘Like’ button to appear for my blog and it is super important for me. If you can have a look, I would greatly appreciate! Here is the URL to my post https://www.propertyresolved.com.au/the-journey-begins/
And here is my functionality/functionality.php file:
<?php /** * Makes it easy to create and edit your own functionality plugin * for pasting snippets instead of in the theme's functions.php * * To minimize confusion, throughout this file when I refer to * 'functionality plugin', I mean the functions.php file that is * created by this plugin in the WordPress plugins folder. * When I refer to 'this plugin', I'm talking about the plugin * whose code you're currently looking at. * * @version 1.2.0 * @author Shea Bunge <[email protected]> * @copyright Copyright (c) 2013-2016, Shea Bunge * @license https://opensource.org/licenses/MIT */ /* Plugin Name: Functionality Plugin URI: https://github.com/sheabunge/functionality Description: Makes it easy to create and edit your own functionality plugin for pasting snippets instead of in the theme's functions.php Author: Shea Bunge Author URI: https://bungeshea.com Version: 1.2.0 License: MIT License URI: https://opensource.org/licenses/MIT Text Domain: functionality Domain Path: /languages */ /** * Enable autoloading of plugin classes * @param $class_name */ function functionality_autoload( $class_name ) { /* Only autoload classes from this plugin */ if ( 'Functionality' !== substr( $class_name, 0, 13 ) ) { return; } /* Remove namespace from class name */ $class_file = str_replace( 'Functionality_', '', $class_name ); /* Convert class name format to file name format */ $class_file = strtolower( $class_file ); $class_file = str_replace( '_', '-', $class_file ); /* Load the class */ require_once dirname( __FILE__ ) . "/php/class-{$class_file}.php"; } spl_autoload_register( 'functionality_autoload' ); /** * Create an instance of the class * * @since 1.0 * @uses apply_filters() to allow changing of the filename without hacking * @return Functionality_Controller */ function functionality() { static $controller; if ( ! isset( $controller ) ) { $controller = new Functionality_Controller(); } return $controller; } functionality()->run(); function jeherve_custom_fb_button( $fb_share_html, $share_url ) { $custom_fb_button = '<div class="fb-like" data-href="' . $share_url . '" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>'; return $custom_fb_button; } add_filter( 'jetpack_sharing_facebook_official_button_output', 'jeherve_custom_fb_button', 10, 2 );