nicovece
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] WTI Like Post Pro Plugin DownloadDon’t worry, they are problems that can occur
thank you so much for your support
downloaded and installed
great plguinNico
Forum: Plugins
In reply to: [WTI Like Post] WTI Like Post Pro Plugin DownloadHello,
This morning I bought your plugin but soon after the site has become unreachable and is still so after several hours. How can I access the product I purchased? I hurry to finish a job and if I can not download it by tomorrow morning (European time) I’ll have to find another plugin.thanks and see you soon
nicohi,
i have the same problem,
new user notification not going out.
how did you resolve thi issue?
the plugin worked well for me on installation, but stopped sending notification when i changed the admin email.
maybe it’s the same mistake.thank you
nicoForum: Fixing WordPress
In reply to: limit length of displayed text get_the_titlenp
Forum: Your WordPress
In reply to: Newly developed theme – comments and suggestions pleasei really like it, clean and simple.
Forum: Fixing WordPress
In reply to: limit length of displayed text get_the_titlehi,
I have used the following code in my theme functions.php to shorten post title on the home page:// WordPress Hack by Knowtebook.com // Shorten any text you want function ShortTitle($text) { // Change to the number of characters you want to display $chars_limit = 30; $chars_text = strlen($text); $text = $text." "; $text = substr($text,0,$chars_limit); $text = substr($text,0,strrpos($text,' ')); // If the text has more characters that your limit, //add ... so the user knows the text is actually longer if ($chars_text > $chars_limit) { $text = $text."..."; } return $text; }
and the following line in place of the_title in the page template:
<?php echo ShortTitle(get_the_title()); ?>
and it works fine in my theme
Forum: Themes and Templates
In reply to: Background Opacity – not text and imgs! >:(hi,
if you set opacity on a div via css, everything in that div will be transparent.
if you want to have only a transparent background try using a png semitransparent image as div background. this technique should work but it may give you some problems in older IE versions so you have to use a ie png fix method.bye
Forum: Fixing WordPress
In reply to: How to have a widget that shows on homepage onlytry using custom sidebars.
register 2 sidebars and use the first on the homepage and second on other pages.
in this way you can show different widgets on the homepage and on other site areas