travis182
Forum Replies Created
-
Forum: Plugins
In reply to: [Pronamic Pay] Status Pending after succesful paymentThat′s it, it′s working now.
Thanks a lot!Forum: Fixing WordPress
In reply to: Problems with 4.5 upgrade ADD MEDIA not workingI don’t think this WordPress release is a big fail. If a (custom) visual composer and all kinds of parallax, carousel, image animations stop working, you’re theme is a big fail. (Might be a general jQuery issue.)
That’s why I don’t like all these custom contentblock visual editors and like to stick to the (excellent) native WordPress functionality.
Everything is working well on 40 sites I’ve upgraded so far, including the ‘add media tab’.Forum: Plugins
In reply to: [AddToAny Share Buttons] Some buttons are missingThanks for the quick reply, but I’m still having the problem with the linkedin button. Even after a reload.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Some buttons are missingI have the same problem. The console of the browser gives an error:
Uncaught TypeError: a2a.kit[P] is not a function in static.addtoany.com/menu/page.jsForum: Plugins
In reply to: [Custom Content Shortcode] Future feature: Switch to blogHaha, great. I tested it and it all works!
Forum: Plugins
In reply to: [Custom Content Shortcode] Future feature: Switch to blogActually
global $switched; switch_to_blog(23);
instead of justswitch_to_blog(23);
Forum: Plugins
In reply to: [Custom Content Shortcode] Show content by date-field.The field, in my case, is stored as 2015-01-25 with the hyphens. The addition of date_format=”Y-m-d” does the trick! It’s working as is should, thanx a lot.
In ACF the date can be stored as yymmdd, yy-mm-dd, yy/mm/dd etc. Adding date_format=”” is needed, I guess, to understand the choosen format in ACF.
Forum: Plugins
In reply to: [Custom Content Shortcode] Show content by date-field.Thanx alot for all the effort. I’m seeing some change, but it’s not working correctly.
The first loop you mention:[loop acf_date="highlight_until" value="past"][field acf_date="highlight-until"][/loop]
always shows 2015-01-25 (value = past or value = future).
The second loop is kinda working:[loop acf_date="highlight_until" value="past"][field acf_date="highlight-until"][/loop]
it is giving a different result for future and past, but the turningpoint is not today, but in the future. So 2015-01-25 is visible in the loop if I use ‘past’. 2017-01-25 is visible with ‘future’.
Forum: Plugins
In reply to: [Custom Content Shortcode] Show content by date-field.yy-mm-dd is the ‘highlight_until’ in the loop and is actually shown as 2015-01-24 by your plugin; not as 1515. It’s standard Jquery format for a datepicker used by ACF (yy – year (four digit))
If I use Y-m-d in ACF the output is Y-1-25
After the update still the same issue.Forum: Plugins
In reply to: [Custom Content Shortcode] Show content by date-field.It still returns 2015-01-24 in both cases.
The date is an ACF field by the way with a format yy-mm-dd.I’ve also tried to format the ACF field with an @ (unix timestamp), but that was converted in the loop to 1984 something…
Forum: Plugins
In reply to: [Custom Content Shortcode] Not having multiple tagsYou’re right, the first one is giving the expected results, the second isn’t. They should give the same results.
I’ve tried something similar on another website and on that one it is working indeed as expected.
I’ve tried using the standard theme, but the problem still occurs. Disabling plugins hasn’t done anything either :-S
If if find anything out, I’ll let you know. Thanx for the support anyway!Forum: Plugins
In reply to: [Custom Content Shortcode] Show content by date-field.I’m using this loop:
[loop type="news" field="highlight_until" value="past" in="string"][field highlight_until][/loop]
It returns: 2015-01-24
If I change ‘past’ in ‘future’ in this loopt, it still returns: 2015-01-24
Forum: Plugins
In reply to: [Custom Content Shortcode] Not having multiple tagsThe last one is not giving any results. Although there are posts that appear in the first AND second loop, so there are posts common to both groups.
First loop shows posts 1,2 and 3
Second loop shows posts 1,2,3 and 4
Third loop shows posts 1,2,3 and 4
Fourth loop shows nothing and should show 1,2 and 3.Forum: Plugins
In reply to: [Custom Content Shortcode] Not having multiple tagsNo, the loop in my first post was giving results…
Forum: Plugins
In reply to: [Custom Content Shortcode] Not having multiple tagsThanx for the (quick) reply, but unfortunately it’s not working.
This:
[loop type="post" taxonomy="category" value="x,y" compare="and"] [field title-link] [/loop]
…doesn’t give a result to start with, while there are posts in both categories.