Lucy Tomas
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Follow Me Social Buttons Widget] Email icon?Have you tried to empty the cache on your browser? And if you are using any cache plugin also clear the cache from the plugin settings. Can you send me the link of your site?
Forum: Plugins
In reply to: [Simple Follow Me Social Buttons Widget] Email icon?Thanks, I’m glad it helps you ??
Forum: Plugins
In reply to: [Simple Follow Me Social Buttons Widget] Email icon?OK, 1.4 is available. You can enter an email address or a link to your contact page in the widget for the Email Icon.
Forum: Plugins
In reply to: [Simple Follow Me Social Buttons Widget] Email icon?Those functions don’t exist in your functions.php, it’s something that you have to copy and paste and style your self on the CSS.
But don’t worry, I will release a new update later today with a fix so you can enter either an email address or a URL to a contact page directly in the widget, cause right now you can only use an email address. I will let you know when 1.4 is availableForum: Plugins
In reply to: [Simple Follow Me Social Buttons Widget] Email icon?I have released an update with email and soundcloud icons
Forum: Plugins
In reply to: [Simple Follow Me Social Buttons Widget] Email icon?Hi sheviy,
Yes, sure, I will add the email icon and soundcloud in a next release, as soon as possible.Meanwhile, if you are in a hurry, I added some action hooks, so you can hook in with a function on your functions.php to add a new link, either before or after the icons.
The action hook names are
sfmsb_widget_before_links
orsfmsb_widget_after_links
So you can put in these lines in functions.php
add_action('sfmsb_widget_after_links', 'my_email_link'); function my_email_link(){ echo '<a href="mailto:[email protected]"><span class="email-icon">EMAIL-ICON</span></a>'; }
And style it in you css file.
Forum: Plugins
In reply to: [WPCore Plugin Manager] Can't install pluginsHi,
Yes, I am using the last version of the plugin 1.4.3 with WordPress 3.9.1.This happens when I click on the button “Install Plugins” next to the button “Add another collection key” (just under the added collections list), the url where is taking me is:
…./wp-admin/admin.php?page=wpcore-install-plugins
But on the wpcore admin page, above the list of collections I have a message:
This theme recommends the following plugins: ….. and here there is a list of the plugins of the collections I want to add.
And if I click on “Begin installing plugins” which is in this same message it will take me to a list of the plugins with bulk actions, this url:…./wp-admin/admin.php?page=install-required-plugins
And I can install them from this page correctly.
Forum: Plugins
In reply to: [Media Tools] Featured Images Not Getting SetAlso here you can find a post with the steps I followed:
https://wptips.me/how-to-import-images-when-importing-posts-from-a-wordpress-export-file/
Forum: Plugins
In reply to: [Media Tools] Featured Images Not Getting SetI had the same problem with Media Tools so I wrote a plugin to set the featured images. You can give it a try, it worked really well for me (only if the images don’t come from the old site).
https://www.ads-software.com/plugins/set-all-first-images-as-featured/
I released it not long ago, so I recommend you to do a backup or your database first, or at least the posts and postmeta tables in case you don’t get the result you were expecting.
Hope it helps ??