knijia
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Hide admin fieldsThanks for your reply Ed, too bas it’s not possible. I managed to hide the admin fields with css but it’s not the most satisfying answer to this problem, especially since the organizer field for example creates a custom post type that i don’t need. It would be great to have the possibility to disable those fields in the options.
Best regards.Forum: Reviews
In reply to: [Lightbox with PhotoSwipe] This is a good integration of PhotoSwipeHi Arno, I don’t know if you plan to add such option in the plugin later but thank you for the tip.
Best regards.Forum: Reviews
In reply to: [Gps Plotter] Good fork of GPS TrackerYou’re welcome. This is the Android description :
“Cette application est con?ue pour fonctionner en conjonction avec notre plugin WordPress gratuit “GPS Plottter-Traceur GPS” qui est disponible gratuitement en téléchargement sur notre site StPeteDesign.com. Nous avons créé un logiciel GPS à plusieurs niveaux tout-en-un, facile et efficace. Con?u spécialement pour les sites sous WordPress et les développeurs WordPress. Tout d’abord, vous téléchargez et installez le plug-in WordPress sur votre site. Téléchargez ensuite notre application Android ou iOS. Voilà, vous êtes prêt. Entrez simplement un nom d’utilisateur et le site Web sur lequel vous avez installé le plug-in. C’est aussi simple que ?a. Nous fournissons également un support de haute qualité pour tous nos logiciels. Nous apprécions tous les commentaires et idées.”
I’ll also replace “GPS Plotter” for “GPS Plotter–Traceur GPS” in the wordpress translation. Do not hesitate if you still need help for other french translation. Regards.Forum: Reviews
In reply to: [Gps Plotter] Good fork of GPS TrackerYou can also send me the terms used in the Android app if you want. Best regards. (sorry, it’s a repeat, it seems, you can delete duplicates ??
- This reply was modified 6 years, 5 months ago by knijia.
Forum: Reviews
In reply to: [Gps Plotter] Good fork of GPS TrackerThat’s it, I proposed a French translation via the WordPress contribution program. One question, however, is GPL Plotter the name of the application in all languages. In French, the term Plotter does not refer to anything known, nothing that can identify the application by its function and in its pronunciation is similar to the verb “to paw” in English. In French, “GPS Plotter” would mean “Traceur GPS”.
You can also send me the terms used in the Android app if you want.
Best regards.- This reply was modified 6 years, 5 months ago by knijia.
Forum: Reviews
In reply to: [Gps Plotter] Good fork of GPS TrackerHi @chilifide, maybe the easiest way for me to do that is with the Translation Contributor program of WordPress. I’ll mark this in my ToDo for the coming days.
Ok, thanks Cais.
is there a documentation for the use of the “custom” field ? i saw, in another thread someone told to write for example : rel=”lightbox” in the field. Is it correct ?
Thanks.Thanks for your answer Cais. I understand now. Is there a way i could still use it with NGG ?
Regards.Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] not compatiblei also get an issue with v3.5.2 and wordpress 3.8.1, after logging in, i am redirected to a blank page (500 Internal Server Error). When i deactivate the plugin, it goes fine. When i reactivate it, i am instantly redirected to the blank page.
<3 !
Forum: Plugins
In reply to: [Magic fields 2] Retrieve the_excerpt of related type custom field in MF2I’ll answer on my own, i hope it will help someone starting with MF2 and wordpress :
<?php $my_related_type_value = get_field('my_related_type_field_name'); foreach($my_related_type_value as $my_related_type_field_name){ $args = array('p' => $my_related_type_field_name,); $the_query = new WP_Query( $args ); while ( $the_query->have_posts() ) : $the_query->the_post(); echo get_the_title(); echo get_the_excerpt(); endwhile; } wp_reset_postdata(); ?>
Forum: Plugins
In reply to: [Magic fields 2] Retrieve the_excerpt of related type custom field in MF2this is the code i use :
<?php $my_related_type_value = get_field('my_related_type_field_name'); if ( get_post_meta($post->ID, 'my_related_type_field_name', true) ) { foreach($my_related_type_value as $my_related_type_field_name){ if ( has_post_thumbnail($my_related_type_field_name) ){echo '<a href="' . get_permalink($my_related_type_field_name) . '">' . get_the_post_thumbnail ($my_related_type_field_name, 'thumbnail');} else {echo '<a href="' . get_permalink($my_related_type_field_name) . '"><img src="' . get_bloginfo( 'template_directory' ) . '/images/default-thumb.jpg" alt="default-thumb" />';} echo '<h3>' . get_the_title($my_related_type_field_name) . '</h3></a>'; if (has_excerpt($my_related_type_field_name) ){echo '<p>' . get_the_excerpt($my_related_type_field_name) . '</p>';} else ''; } } ?>
I think i’m not doing the right way, if someone could help me …
Thanks ??Good news ! Thanks for the link.
Has anybody succeded to display the All-in-One Event Calendar widget with
echo do_shortcode('[ai1ec view="agenda"]');
?
Or is there another way to do this ?