Daniele De Santis
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Add Custom CSS] Would have gave it 5 stars…Hi,
you’re right, thanks for pointing this out.Fixed in version 0.9.4, just released!
Five stars, please 🙂
Daniele
Hi,
it seems that the plugin’s main file has been edited a bit, as I can’t see some html tags in the output.Could you please send me via email the “wp-recent-posts-from-category.php” file you are using? Just to make sure everything is correct.
Could you alse provide the shortcode you are using in that box?
Thanks,
DanieleHi Ninino,
could you please provide a link to the page where you’re experiencing this issue?Thanks,
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] error on custom post pageHi Nadir,
that’s a notice, probably you have debug mode on. It has been solved in version 0.9.3.Thanks for your help.
DanieleForum: Plugins
In reply to: [WP Add Custom CSS] Textarea widthGood idea, done in version 0.9.2!
Thanks,
DanieleForum: Plugins
In reply to: [WP Recent Posts From Category] Add "Read more" tagHello,
thanks for the appreciation!You can open the plugin’s main file wp-recent-posts-from-category.php and add something like:
$output .= '<br><a href="' . get_permalink() . '">' . __('Read more', 'wp-recent-posts-from-category') . '</a>';after line 76.
If you want, instead of
' . __('Read more', 'wp-recent-posts-from-category') . '
which requires you to generate and edit a new language file, you can write “read more” in your language.Hope this helps.
Best,
DanieleForum: Plugins
In reply to: [WP Recent Posts From Category] Just a hope.Hi memoryfun3,
thanks for your appreciation!“WP Recent Comments From Category” is a good idea, unfortunately I don’t have enough time to develop a new plugin now, but I won’t forget your suggestion!
Bye,
DanieleForum: Plugins
In reply to: [Woocommerce Add Countries] Remove United Kingdom?Hi Stowbee,
in the latest Woocommerce version there is a “select all” button which automatically adds every country in the world. Then you can just remove UK.The second issue has probably to do with the way Woocommerce manage country codes (please note that my plugin only provides a backend interface for the function specified in the official Woocommerce codex documentation, it doesn’t change Woocommerce behaviour).
Have you tried using a two letter code?
Daniele
Forum: Plugins
In reply to: [WP Recent Posts From Category] Featured imagesHi Marcophile,
yes, I’ve been ask to add featured images several times, so I’m planning to do that in the next versionThanks for your suggestion 😉
Daniele
Forum: Plugins
In reply to: [Woocommerce Add Countries] Remove United Kingdom?Hi Stowbee,
you can do that from the Woocommerce settings page, by setting “Selling Location(s)” to “Sell to specific countries only” and the selecting only the countries you want (excluding United Kingdom, in your case).Please note that some gateways doesn’t allow you to use Wales, Scotland, England and Northern Ireland instead of United Kingdom.
For example, it won’t work with Paypal Pro, while it will work fine with Payapal Business.
Daniele
Forum: Plugins
In reply to: [WP Recent Posts From Category] Date only.Hi erodegrigo,
like Oxiclean said, you need to edit the plugin file to remove the author.Open wp-recent-posts-from-category.php and go to line 151:
if ($meta) { $output .= '<br><small>' . get_the_author() . ' - ' . get_the_date() . '</small>'; }Remove the author, so your code now is:
if ($meta) { $output .= '<br><small>' . get_the_date() . '</small>'; }Hope this helps, bye
DanieleForum: Reviews
In reply to: [WP Add Custom CSS] Doesn't fully workMy fault, I should have read the forum welcome more carefully!
Forum: Reviews
In reply to: [WP Add Custom CSS] Doesn't fully workHi Mobyme, thanks for your detailed reply.
I tested the plugin using Striker v2.1 and had no problem with backgrounds.
I could easily override the default hover in navigation using the right css rule:
.main-navigation li:hover a { color:#00ff00; }If you look at the generated code you can see that the plugin is working, placing the right css stylesheet and <style> tags where they should be, so I believe the issue you are facing has to do with the css rules your are using.
If you need help you can email your link and credentials and I’ll be happy to help you.
Thanks,
DanieleForum: Reviews
In reply to: [WP Add Custom CSS] Doesn't fully workCould you please provide more info?
You are not reporting any specific bug.Thanks for your help.
Forum: Plugins
In reply to: [WP Add Custom CSS] Doesn't fully workSolved in version 0.9.1
Thanks for pointing it out!