kraudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Popup Lightbox] Missing files(function($){ $(function() { var pop = $('#popup'); setTimeout(function(){ if(pop.length == 1){ $.colorbox({ html: pop.html(), scalePhotos : false, opacity: 0.7, maxWidth:($(window).width() - 20), onLoad: function(){ $('html,body').animate({ scrollTop: 0 }, 200, "swing"); var current_time = Math.ceil((new Date().getTime())/1000); setCookie("pl-open-time-" + POPUP_ID, current_time, 10); setCookie("pl-showed-" + POPUP_ID, 1, 10); } }); } }, 200); }); function setCookie(c_name, value, exdays) { var exdate = new Date(); exdate.setDate(exdate.getDate() + exdays); var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString()); document.cookie = c_name + "=" + c_value; } })(jQuery);
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Forum: Reviews
In reply to: [Google Maps Travel Route] Very niceHi, very good this option ??
Forum: Plugins
In reply to: [OmniGallery by Colorlabs & Company] Facebook Session ExpirationMy plugin show error:
An error occurred while linking with Facebook: Failed to get a session secret.
Forum: Plugins
In reply to: [WP Bannerize] Banners suddenly stopped showing WordPress 3.5Very Good, thanks
Forum: Plugins
In reply to: [WP Bannerize] Cannot create new banners with WP Bannerize in WordPress 3.5.1Yes, if it had this error (as shown in the video).
Forum: Plugins
In reply to: [WP Bannerize] Cannot create new banners with WP Bannerize in WordPress 3.5.1Hello everyone, I have a similiar problem
Video showing the problem
https://www.youtube.com/watch?v=W15IvNOZ4kUI bought the https://codecanyon.net/item/wordpress-admanager/544421, but nothing compared with the bannerize.
Forum: Plugins
In reply to: [Useful Banner Manager] How do infinite loop for banner?Hello, okay?
I’m really enjoying the plugin.
I’m a problem when I put the widget to rotate the banners, they do not turn on the cover of the site.
Link to my website where the banner ads that are not working. https://kraudio.com.br/wp_rede/
thank you
Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] How to hide the number of votes of the pollPerfect, thanks
Hello, I use and works very well backwpup.
Forum: Themes and Templates
In reply to: Hacking – no truncating when shortcode is usedin function.php(template)
/* truncate **************************************************************/ function truncate($str, $len=80, $etc='') { $end = array(' ', '.', ',', ';', ':', '!', '?'); if (strlen($str) <= $len) return $str; if (!in_array($str{$len - 1}, $end) && !in_array($str{$len}, $end)) while (--$len && !in_array($str{$len - 1}, $end)); echo rtrim(substr($str, 0, $len)).$etc; }
in template page
<a href="<?php the_permalink(); ?>"><?php truncate(get_the_content(), 90, ' {...}'); ?></a>
Forum: Plugins
In reply to: [WP-Filebase Download Manager] WordPress truncates wp-filebase shortcodein function.php(template)
/* truncate **************************************************************/ function truncate($str, $len=80, $etc='') { $end = array(' ', '.', ',', ';', ':', '!', '?'); if (strlen($str) <= $len) return $str; if (!in_array($str{$len - 1}, $end) && !in_array($str{$len}, $end)) while (--$len && !in_array($str{$len - 1}, $end)); echo rtrim(substr($str, 0, $len)).$etc; }
in template page
<a href="<?php the_permalink(); ?>"><?php truncate(get_the_content(), 90, ' {...}'); ?></a>