popsantiago
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Map] Change Theme & KML generatorHello,
I found my bug…
A “space” in the call feed function =/
Thanks
Forum: Fixing WordPress
In reply to: Replace my content by a custom fieldHello catacaustic
Thanks for reply.
The fact is i don’t know what’s the problem… I’m not really a dev.
I find a function for update post_content and i take it.foreach( $posts as $post ) { setup_postdata( $post ); $value = get_post_meta( $post->ID, 'description_visit_factory', true ); wp_update_post( array( 'ID' => $post->ID, 'post_content' => $value, ) ); }
With my 1300 posts i had a memory trouble (1024Mo) so i try to do by bloc with my custom tax query.
foreach( $terms_region as $term_region ) { $args = array( 'post_type' => 'visite', 'posts_per_page' => -1, 'post_status' => 'any', 'orderby' => 'ASC', 'tax_query' => array( array( 'taxonomy' => 'region', 'field' => 'slug', 'terms' => $term_region->slug, ) ), ); $posts = new wp_query( $args );
Even with this the update seems didn’t go to the end because i’ve 23 regions but at the end >> ###### update complete! #####
but the first region loop
echo ‘##### ‘.$term_region->name .’ : done !‘;
doesn’t appear for each region.And posts ”updated” (in the ‘done !’ regions) didn’t update and in the taxonomy, posts are not anymore tag with the taxonomy ‘region’…
Any idea ?
Thank you
Forum: Plugins
In reply to: [Flexible Map] KML doesn't Work…Hey @webaware
Thx for your reply, that works now ??
For the kml structure, i will wait a better time and greater connection ??
Pop (from Buenos Aires for now ??Hello,
WP add the last “/” !
So you need to add this to your configuration at the end >>
https://www.inflection.nl/manage-subscriptions/Maybe @reedyseth need to add by default no ? ??
Pop
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Place it before comment submit button?Hello,
I do some change in the plugin folder >
subscribe-to-comments-reloaded.php Line 86
Change
add_action(‘comment_form’, ‘subscribe_reloaded_show’);
to
add_action(‘comment_form_after_fields’, ‘subscribe_reloaded_show’);This change put the checkbox after the url field.
Pop
Forum: Plugins
In reply to: [Flexible Map] Maps disappearAll right,
Thanks
Pop
Forum: Plugins
In reply to: [Flexible Map] Maps disappearOk,
I hate work with cache…
The issue seems to be : stop the Rocket Loader of the CDN 1and by CloudFlare.
If i need to not minify a specific file for Fleximap, which on is it ?
Thanks
Forum: Plugins
In reply to: [Flexible Map] Maps disappearHey Webaware,
Thanks for your reply.
I did a fresh install my theme + your plugin => Map Works.
The différence between prod and dev is the Cache plugin and the new add-on of 1and1 Cloudfare possibility.Do you think that can be the problem ?
Thanks.
Yep,
Agree, same for me >>
NextGEN Gallery v2.0.27 + Yoast’s WordPress SEO v1.4.18
XML is break…Any help will be great ??
@dancheek DownGrade SEO plugin solve it for the moment.
Forum: Plugins
In reply to: [Flexible Map] KML Description with Image PostThumbnailOk no problem.
Thanks for replies
I will check in google ??Forum: Plugins
In reply to: [Flexible Map] KML Description with Image PostThumbnailThanks ??
Php skills grow!One last question but not least…
Can i link the Marker selected with the loop ?
Marker 1 with Checkin 1 ?Thanks
Forum: Plugins
In reply to: [Flexible Map] KML Description with Image PostThumbnailHey Webaware
We are genius ??So i got a mistake (my bad i hate copy/paste) so i write
add_action('wp_ajax_XXXX_maps_checkin', 'ddworldtrip_maps_checkin'); add_action('wp_ajax_nopriv_XXXX_maps_checkin', 'ddworldtrip_maps_checkin');
Not same name so that not worked.
One time solved :
Response https://www.ddworldtrip.com/wp-admin/admin-ajax.php?action=ddworldtrip_maps_checkin was good…
But https://www.ddworldtrip.com/checkin/ doesn’t work.According my first code and https://codex.www.ads-software.com/AJAX_in_Plugins#Ajax_on_the_Administration_Side for a PHP request the die(); is needed // this is required to return a proper result
So now it’s good and safe !
Thank you so much !
EDIT Next Step : DOM ??
Forum: Plugins
In reply to: [Flexible Map] KML Description with Image PostThumbnailReally sorry…
https://www.ddworldtrip.com/wp-admin/admin-ajax.php?action=ddworldtrip_maps_checkin
give me a ‘0’…
Forum: Plugins
In reply to: [Flexible Map] KML Description with Image PostThumbnailHey webaware
I’m really bad with php function…
I do the function ddworldtrip_maps_checkin()
But if i put :
echo do_shortcode('[flexiblemap src="'.ddworldtrip_maps_checkin().'" width="100%" height="400"]');
Checkin page write the kml… https://www.ddworldtrip.com/checkin/
Any idea ?
Forum: Plugins
In reply to: [Flexible Map] KML Description with Image PostThumbnailHi webaware !
Ok i will let infobox like that ?? it’s not uggly
Second work will be too harder for me… but i will try it !
Was easer for me last night working with echo php kml because i got a georss tuto to get the query and item. But you are right, i will be use the DOM.
Thank you