teejnits
Forum Replies Created
-
It’s been fixed as of 9:40 AM MST.
While I understand the new “action” requirement, Facebook made a mistake originally forcing people to switch instead of accepting legacy widgets.
They caught their mistake and now you can leave your widgets as they were. New widgets will have the “action” section but I believe it is still (and was supposed to be) optional.
Just remember, if anything you have from Facebook breaks (recommend boxes, like buttons, FB logins), and you haven’t touched it… Just let it sit for a few hours and Facebook will finally fix it.
They have had issues like this multiple times in the past. It’s very frustrating.
Forum: Plugins
In reply to: [Referrer Detector] Referrer Detector ImagesMay I also offer a suggestion (which I’ve just gone ahead and done) for allowing a tag {encoded_url} as I am constructing a message to StumbleUpon visitors to be able to also “like” the post from the welcome graphic.
So my body content looks like:
<a href="https://www.stumbleupon.com/submit?url={encoded_url}"><img src="https://domain.com/wp-content/uploads/StumbleUpon.jpg" alt="Stumble Upon"></a>
To achieve this I added “<img>” to the approved tags and changed the prepare_post_data method in rd.class.php inserting:
$encoded_url = urlencode( get_permalink($post->ID) );
after the url variable and inserting:
'encoded_url' => $encoded_url,
Into the $data array.This may be against what you were intending but it fits our immediate needs… Just wanted to give you a heads up in case you like the idea and would consider it in a future update.
Forum: Plugins
In reply to: [Referrer Detector] Referrer Detector ImagesI changed the allowable tags option but I know it’ll get removed in a future update. Was just wondering why they aren’t a part of the allowed tags by default.
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Recurring Events by day (ie. Every 2nd Friday)Question, how much money would it take to put it on the top of your list? As in, those of us who are so desperate for this feature, if we banded together to add to the fund certain amounts would that help speed up the process? I have a few clients desiring of this functionality and would probably help me support the project financially, but only specifically for this purpose.
Of course they’d/I’d want the premium plugin as well.
Just a thought, thanks,
TJ
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Issues displaying todays events,Anyone?
Weird… today it’s showing todays events…
Haven’t changed anything though… The past week it drops off todays events.
I know people have posted some solutions here… But I am having the same problem and none of the proposed solutions have resolved this issue.
The site in question is: gracepolaris.org
Forum: Plugins
In reply to: “Keyword Search”Since this plugin didn’t exist… I created it:
Forum: Plugins
In reply to: [Plugin: The Events Calendar] clicking on calendar does not show me eventsSame, and also the same that it just started happening today I believe.
https://gracepolaris.org/category/events/month/I attempted what one of the above posters mentioned to no avail:
I just updated my settings > general > time-zone from the default of UTC+0 to my local time-zone: America/New York and now the default month (current month) loads the current month and current events properly (as it did before).
For now my solution will be to change the link code to the actual month, that will at least work for March until I would then have to change it again. Hope it’s just a simple bug.
Thanks,
TJ
Forum: Plugins
In reply to: Intercept search term…Finally found out how… Was thinking too hard. Trying to be way to complicated.
In my plugin I did the add_action(‘wp_head’, ‘my_function’) and thus the function is inserting something like this into the header:
function my_function() {
if(is_search()) {
$search_key = get_search_query();/* Do what I want with the value */
if( what I wanted worked ) {
Stop the default search and do this;
} else {
Do nothing which will just let wp continue with searching
}
}
}So what I was looking for was “get_search_query()” and I was searching for the wrong thing in Google and here…
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Recurring Events by day (ie. Every 2nd Friday)Recurring events is a definite plus!
Also with a start-end date. I have an event that started Thursday Feb 4 and goes every Thursday until April 29.
Semi-patterned options:
First Monday of each Month
First and Third Wednesdays of each Month
Every other weekOr, like someone else suggested, non-patterned options as well:
Select the dates this Event will be happeningLove the plug-in though!