jwfoster2014
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate WordPress - Google Language Translator] not working in IEI’m having the same issue! Works just fine in Chrome, FF and Safari. But IE not so much!
Forum: Plugins
In reply to: [WP-PostRatings] Registered UserThanks and I totally understand not wanting to mod you work! LOL
I appreciate all your help, thanks ??
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteSWEET!
Great Catch!! That seems to be working! ??Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteStill having an issue – SORRY!!
Settings:
Who Is Allowed To Rate? Guests Only
Ratings Logging Method: Logged by CookiesThe code in wp-postratings.php is set to
// Only Create Cookie If User Choose Logging Method 1 Or 3 $postratings_logging_method = intval(get_option('postratings_logging_method')); if($postratings_logging_method == 1 || $postratings_logging_method == 3) { $rate_cookie = setcookie("rated_", $ratings_value[$rate-1], time() + 86400, apply_filters('wp_postratings_cookiepath', SITECOOKIEPATH)); }
And I’m still able to go to other posts that have the ratings shortcode in them and vote ?? Am I overlooking something?
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One Voteawesome ??
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteAnother quick question …
If I were to remove the .$post_id from the string would that limit the user to only ONE vote TOTAL per day, meaning they wouldn’t be able to vote on any other posts at all that day?
Which is what I really want to happen ??
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteYup, did just that!
Thanks for the assist!! Greatly appreciated!
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteLester …
Thanks so much!
I modified `// Only Create Cookie If User Choose Logging Method 1 Or 3
$postratings_logging_method = intval(get_option(‘postratings_logging_method’));
if($postratings_logging_method == 1 || $postratings_logging_method == 3) {
$rate_cookie = setcookie(“rated_”.$post_id, $ratings_value[$rate-1], time() + 30000000, apply_filters(‘wp_postratings_cookiepath’, SITECOOKIEPATH));
}`To look like this
// Only Create Cookie If User Choose Logging Method 1 Or 3 $postratings_logging_method = intval(get_option('postratings_logging_method')); if($postratings_logging_method == 1 || $postratings_logging_method == 3) { $rate_cookie = setcookie("rated_".$post_id, $ratings_value[$rate-1], time() + 86400, apply_filters('wp_postratings_cookiepath', SITECOOKIEPATH)); }
Fingers crossed ??
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteWould something like this work:
add_action( 'init', 'my_setcookie' ); function my_setcookie() { setcookie( 'my-name', 'my-value', time() + 86400, COOKIEPATH, COOKIE_DOMAIN ); }
Forum: Plugins
In reply to: [WP-PostRatings] Only Allow One VoteHow would I set the Cookies to expire in 24 hours?
I don’t see this option in the pugin control panel
Forum: Plugins
In reply to: [Custom Content Shortcode] Visual Editor Strips ShortcodesHey there alexmkubik …
Which of the widgets in the visual editor are you insert your code into? I ran into similar problems and simply started using the Raw HTML widget and that seems to work well for me.
Forum: Plugins
In reply to: [Love Post Voting] Demo link? Screenshots?Have you guys gotten any kind of response from the developer?
Forum: Plugins
In reply to: [Featured Video Plus] Autoplay video in All pages except home pageIf you’re familiar with coding php you could possibly right a a conditional based upon the page IDs and a ‘do shortcode’ statement?