Sherwin Techico
Forum Replies Created
-
Forum: Plugins
In reply to: [WP2Static] Missing zip extension^ Bump. Having the same problem.
Forum: Plugins
In reply to: [Google Typography] var $fonts not an array (just on one site)Getting this bug too. Will follow the thread…
^ Same thing for me on Dreamhost.
I updated to 2.2.5. I’ve had the following in the “Greeting Text” field of Jetpack Comments:
Please keep your comments smart, civil, and limited to the subject matter.
It doesn’t overwrite, and it just displays “Leave a reply”. Anyone else that can replicate it?
TIA
Here’s my current workaround. In functions.php:
// Load plugin styles/JS only for pages that needs them function my_deregister_styles() { if (!is_page('Contact')) { wp_deregister_style('contact-form-7'); } if (!is_single()) { wp_deregister_style('tfg_style'); } } function my_deregister_javascript() { if (!is_page('Contact')) { wp_deregister_script('contact-form-7'); } if (!is_single()) { wp_deregister_script('tfg_script'); } } add_action('wp_print_styles', 'my_deregister_styles', 100); add_action('wp_print_scripts', 'my_deregister_javascript', 100);
Would be great if the plugin itself can handle it, but I understand if it can’t since we can’t use is_single() like the above in tf_display.php itself(?)
—
Note. With regards totfg_script
. In tf_display.php, I modded the respective code:if ($option['active_buttons']['twitter']==true) { wp_enqueue_script('tfg_script', 'http'.(is_ssl()?'s':'').'://platform.twitter.com/widgets.js','','',$option['jsload']); } if ($option['active_buttons']['Google_plusone']==true) { wp_enqueue_script('tfg_script', 'http'.(is_ssl()?'s':'').'://apis.google.com/js/plusone.js','','',$option['jsload']); } if ($option['active_buttons']['linkedin']==true) { wp_enqueue_script('tfg_script', 'http'.(is_ssl()?'s':'').'://platform.linkedin.com/in.js','','',$option['jsload']); } if ($option['active_buttons']['pinterest']==true) { wp_enqueue_script('tfg_script', 'http'.(is_ssl()?'s':'').'://assets.pinterest.com/js/pinit.js','','',$option['jsload']); }
Forum: Plugins
In reply to: [Social Share bar (Digg Digg Alternative)] Causes META tags to go intoThanks for the heads up. Was about to use this plugin. Will be putting this hotfix for now.
Forum: Plugins
In reply to: [Visual Form Builder] Can "Create User" addon do this?For those looking for the same info:
Do regular VFB Pro fields get added to the User Profile, too?
No. Typical fields such as those under the Standard and Advanced tabs are not added to the newly created User. Only the Username, Password, and Email fields are added to the new user account.
In this case, it seems that if you are looking to get standard & advanced tab fields added, Formidable Forms might be a better plugin to use:
https://formidablepro.com/knowledgebase/formidable-registration/
HTH
Forum: Plugins
In reply to: [Launchpad - Coming Soon & Maintenance Mode Plugin] Shortcode Support ?Thanks @superp. Fixed my problem. Hope this feature gets added by default.
Forum: Fixing WordPress
In reply to: Admin side menu keeps collapsing on me@elly12’s solution helped my end. Hope this bump fixes others looking for an up-to-date method.
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] Change post titleYou can copy
content.php
, and paste that intocontent-status.php
. Then just delete the title part.I see that the functionality of TT is to pull in all tweets from an account. Then, create a blog post w/ format “status” (if enabled). So yes, working as intended.
Forum: Plugins
In reply to: [Tools for Twitter] Get Profile pictures to show up in postsInterested in this too. Stephen, please update if you get it working; vice-versa. I’m working on something similar. Thanks.
1. Can’t you just do that w/ in your template (e.g. add the “Follow us…”)?
2. Same as #1, just do an if/else w/ regards to if there’s a “Featured Image” set by TT. Else, put either: a) a class on the container or something to then pull a bkg img; or b) add an img-tag
3. My install pulls in the tweet and adds it to the title, truncated to some chars.
HTH
Forum: Plugins
In reply to: [Tools for Twitter] tweets in a dedicated categoryI think you can set the Category where your tweet goes in your User’s admin page. HTH
Forum: Plugins
In reply to: [Tools for Twitter] How to add reply, retweet & favorite buttons?^ Bump. Would like the same functionality, as well as twitter meta (when it was posted, and permalink to actual twitter status page)
Thanks