Sunger
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] like/dislike when not connectedthanks, I used a trick in php in fonctions.php in the admin init hook
function prevent_admin_access() { if (strpos(strtolower($_SERVER['REQUEST_URI']), '/wp-admin') !== false && !current_user_can('administrator') && !defined( 'DOING_AJAX' ) ) { wp_redirect(get_option('siteurl')); } } add_action('admin_init', 'prevent_admin_access', 0);I had to modify your code to show them up in post excerps hope you don’t mind it.
Forum: Plugins
In reply to: Plugin to reveal content after a set timeyou should just have a look to these lugins
http://ww.wp.xz.cn/plugins/tags/countdown and see if one of them fits your needsForum: Plugins
In reply to: Plugin to reveal content after a set timehi , do you have some knowledge in php / javascript ?
I ve seen plugins with a countdown in posts, is there all the website showing up at 0 ? or just a part of it ?Forum: Plugins
In reply to: [WTI Like Post] like/dislike when not connectedsolved !
Forum: Plugins
In reply to: [WTI Like Post] like/dislike when not connectedyou are right, the issue come from my redirection, that’s why I have a 302 error, the ajax page is non reachable. As I did my tests with the admin credentials I didn’t notice that.
Thanks a lot, I could have spent a week on that,
regars
Forum: Plugins
In reply to: [WTI Like Post] like/dislike when not connectedyes as I have written a totally new registration process, i ve blocked the back office access for all users, ill try to remove it for a while and see what happen thx
Forum: Plugins
In reply to: [WTI Like Post] like/dislike when not connectedthanks for the answer,
this is the url of my website , it is still in pre production
http://preprod.like-interactive.com/wordpress/i’m using WordPress 3.5.2.
I ve tryed to like unlike with all acount disconnected but the issue still remains.I was about to check the code as the ajax post request sends me a 302 Moved Temporarily error, I don’t know if it’s the problem
Forum: Plugins
In reply to: [Nobs • Share Buttons] Share on a pop-up window instead of another pagehi, that’s an easy trick, as you just need a quick JS fonction and update your href to send width height and location, as it’s a window containing a window, a specific css is not that needed..
regards
Forum: Themes and Templates
In reply to: Changing Width Of PostHi, as your theme is not supported by wp.org, the architecture may be a bit different.
To change the post boxes width, you ‘ ll have to change the style in your style.css page (wp-content/themes/yourtheme/style.css )
and add to the class “post-wrap” a width in pixels or in %.
As this stylesheet is for all your wp, prevent from modyfing it without basic knowledge in CSS.
The developer’s support may help you with the code then,regards
Forum: Themes and Templates
In reply to: Make Blog Look like a blogHi,
I was typing an answer but looks like lettergrade was quicker than me.
I guess she covered all, as your blog view is just your latest posts and the sidebar would show up when you put something inside.Regards,