ceebeez
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF to WP-API] Filter not Filtering.Just want to add that, like Martin, the code on GitHub didn’t work for me either, but Martin’s code in his 2nd post did. Thanks Martin!
I’m using a custom post type, so if you are too, in the post_meta_register function be sure to change ‘post’ to your post type name, and of course, change ‘testing’ to the name of your ACF field.
I also had to rename the functions themselves as they were causing conflicts, but other than that everything now works as expected.
Forum: Plugins
In reply to: [Search Everything] Search No Longer WorksI can also confirm this bug. I had the same problem where I got no search results. I disabled the plugin and Default wordpress search worked as expected. After reactivating Search Everything I removed the category exclusion and search works again.
Like bergerrj, I also have some page IDs excluded but this does not prevent the plugin from working, only category exclusions.
Great plugin. I hope the fix for this is coming soon.
Running version 8.1.3, latest as of this post.
Thanks.
Forum: Plugins
In reply to: [Adaptive Images for WordPress] Works in a Multisite environment?Awesome, thanks for the info. I’ll keep an eye out for the feature!
Thanks for letting me know.
Thanks for your reply. So you’re saying that with Relevanssi Premium in the situation as described above these errors would not occur when Broadcasting posts with the Link Post to Children option enabled?
Thanks again.
Forum: Plugins
In reply to: [WP-PostViews] Call increase post views by ajax?I have the same question, but I don’t know where I should put that code. Can you give some more info please?
Thanks.
Forum: Plugins
In reply to: [Private Only] How to remove the links at the bottom of the login page?You could also create a CSS file called ‘custom.css’ and put in the following:
p#backtoblog, p#nav { display: none; }Then upload it to the theme’s root directory.
Though that wouldn’t remove the reference to the site’s URL if someone looked at the code.
Ah OK. Thanks for the info.
I was having the same issue. I disabled the WP Total Cache plugin and Post Expirator works again.
I did not see the UNSCHEDULED note in my debug logs however. I just got:
4390 -> SCHEDULED at Tue, 25 Jun 2013 18:59:00 +0000 (1372186740) with options Array ( [expireType] => category [id] => 4390 [category] => Array ( [0] => 3 ) [categoryTaxonomy] => category )for a failed Expiration. No other info in the debug log.
However, I notice that after I disabled the Total Cache plugin and did a successful Expiration test I got:
2013-06-25 14:20:02 4534 -> CATEGORIES COMPLETE Array ( [3] => Past Events ) 2013-06-25 14:20:02 4534 -> CATEGORIES REPLACED Array ( [3] => Past Events ) 2013-06-25 14:20:02 4534 -> PROCESSED category Array ( [expireType] => category [id] => 4534 [category] => Array ( [0] => 3 ) [categoryTaxonomy] => category ) 2013-06-25 14:19:09 4534 -> SCHEDULED at Tue, 25 Jun 2013 19:20:00 +0000 (1372188000) with options Array ( [expireType] => category [id] => 4534 [category] => Array ( [0] => 3 ) [categoryTaxonomy] => category )So for some reason with the Total Cache plugin activated only the SCHEDULED log/process went through, but once Total Cache was deactivated the SCHEDULED, PROCESSED, CATEGORIES REPLACED, and CATEGORIES COMPLETE log/processes went through.
Not sure if this is the same issue but hope this helps.
It’s not my thread so I don’t think I can set it as Resolved. But it is resolved for me.
Yes, I’m pretty sure I emptied the cache.
I read in another support ticket that the animate value has to be stated, so I added that in the shortcode as well as width, height, etc. though I’m not sure if it was the animate value or just adding the other various values to the shortcode as well that got things running .
But as soon as I added the values it worked again.I’ll second that – plugin was working fine then installed WP Total Cache and there are just blank spaces where the maps should be.
UPDATE – it seems to work now. I updated the shortcode to state the various values (width, height, animate, etc) explicitly and the maps are now showing up correctly.
Forum: Plugins
In reply to: [Pronamic Google Maps] Hidden Div showing Grey MapHi Remco, thanks for the code – sorry for my late reply.
It almost works but the map in the affected DIV is then zoomed way out, showing the whole world. I’m continuing to try to implement some ‘map center’ code but it hasn’t worked yet.
It also seems to affect the working of the tabs – they stop working after clicking the affected link to the DIV.
I’m going to keep playing with this but if you can think of any other code for this please send it over.
Thanks again.
Whenever I get this working I’ll post my code here for others to see.
Forum: Plugins
In reply to: [Pronamic Google Maps] Hidden Div showing Grey MapThanks for your reply Remco. I really appreciate it.
I’ve taken your example code and replaced the selectors so they reference my ids and I am no longer getting the ‘map not defined’ error, but I’m still seeing most of the map greyed out when the tab is shown.
Here’s my code:
<div class="project_list" id="past_map"> <?php if(function_exists('pronamic_google_maps_mashup')) { pronamic_google_maps_mashup( array( 'post_type' => 'projects', 'meta_query' => array( array( 'key' => 'project_active', 'value' => '1', 'compare' => '=' ), array( 'key' => 'project_status', 'value' => 'past', 'compare' => '=' ) ) ), array( 'width' => 650, 'height' => 400, 'map_type_id' => 'roadmap', ) ); } ?> </div> <script type="text/javascript"> jQuery(function() { jQuery('#past_map .pgmm').on('pronamic-google-maps-ready', function(map) { jQuery('#show_pastmap').click(function() { google.maps.event.trigger(map, 'resize'); }); }); }); </script>#show_pastmap is the name of the tab that gets clicked to show this map’s hidden div.
It’s probably worth noting that I have a map that loads in another tab that is shown by default when the page is loaded, so 2 maps total, with the one above in the hidden div (using jQuery tabs). The other map has the same query but the value of the key ‘project status’ is ‘current’ whereas this one is ‘past’.
Thanks again.
Forum: Plugins
In reply to: [Pronamic Google Maps] Static Map showing instead of DynamicHi Remco,
thanks again for getting back to me. I’m afraid the site is currently on a dev server so I can’t give a link.However, the fix I mentioned in my previous post does seem to work. As the client has gone through and added extra content to any posts with a Pronamics Map, the map starts displaying normally in the post again.
As I said, it only seems to work if content is added, not if the post is simply Updated without adding anything.
Also, I would say that it probably had something to do with updating my Custom Field Group (using the Advanced Custom Fields plugin) – I’ve seen it before that when a field group has a newer version imported (after the old one has been deleted), sometimes any posts that used that group have to be resaved (updated) to make them display correctly. But usually you don’t have to actually add new content, which is where this issue seems to be unique. I’m just lucky in this case that the client is continuing to add content to the affected posts.
For the record, before adding new content I also tried turning off, updating the post, then turning back on the Show Map checkbox of Pronamic Maps. And also modifying the Map in some way (new address etc). Neither seemed to make the maps function again.
If there is still a post that has this issue once the site is launched I will send a link.
Thanks again.