pissenlit
Forum Replies Created
-
Hello,
I installed mailpoet and testing with several different email addresses, I realize that the email to validate the registration is never received for addresses in gmail, live and hotmail.
I use your mail sending service.
The address used for sending is not free address like yahoo or gmail.
Do you have an idea of ??the problem ?- This reply was modified 5 years, 6 months ago by pissenlit.
Forum: Plugins
In reply to: [Gwolle Guestbook] Text change form and buttonI understood that it was necessary to copy the code, but what I wish is to change the text.
Instead of having “WRITE A MESSAGE” on the button, I would like to write “DEPOSIT YOUR COMMENT”.
I also want to modify the text of the input.Must we change that somewhere?
if I copy that code, the text will not change !!
Forum: Plugins
In reply to: [Gwolle Guestbook] Text change form and buttonOk I installed the child theme.
I looked for the files to modify the text of the button of the form: “Send a message” and also I would like to modify the text of the input and the placeholder “Message of the guestbook”.
I can not find the right file in filters and I do not know which part to change!
Would not it be easier to edit the translation .mo file? but I can not find a translation into French.
Thanks !
Forum: Plugins
In reply to: [Gwolle Guestbook] Text change form and buttonSorry but I did not understand … I do not speak English well …
How to make the modifications made on docs / filters not be overwritten during the next updates?
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Pb sauvegarde automatiqueBonsoir
Filezilla > fichier > gestionnaires de sites > cliquer sur le site puis à droite paramètres de transfert et décocher passif
Bonne soiréeForum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Pb sauvegarde automatique@crips
Le problème a été résolu pour moi en décochant le mode passif dans filezilla (cliquer sur le site puis l’onglet de la fenetre de droite / paramètres de transfert).
Les sauvegardes automatiques fonctionnent bien également maintenant.Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Pb sauvegarde automatiqueBonjour,
J’ai décoché aussi le mode passif aussi et la tache s’est bien créée manuellement. Reste à voir si elle se fera bien automatiquement par la suite.
Bonne journéeForum: Reviews
In reply to: [WP-Members Membership Plugin] Without connection areaOk, thank you for your answers, but with the delay I had to find another plugin, too bad … I think you should display it on the description of the plugin that it is possible, it would avoid this type of question …
Thank youForum: Themes and Templates
In reply to: [Virtue] Several lines contained in the model portfolioRésolved !
Forum: Themes and Templates
In reply to: [Virtue] Several lines contained in the model portfolioOk I realized I was in the VISUAL TEXT editor and not , now I have the Toolbar ! a thousand thanks !
Forum: Themes and Templates
In reply to: [Virtue] Several lines contained in the model portfolioHello,
Thank you all for your responses. Concerning the theme of Kadence answer, I do not have this toolbar in my text editor , it’s because I’m in the free version ? otherwise how could I have?
Thank you !
Merry ChristmasForum: Themes and Templates
In reply to: [Virtue] Changing portfolio layoutHello,
I have the same problem as Ruthra but I have not found the place from which to choose Insert tab or accordion.
I do not have other options in the project page.
Thanks for your aid !
Forum: Plugins
In reply to: [Testimonials Widget] Appearance a € " before my titlesThank you for your answer , in fact everything is back to normal today, without knowing why !
thank you and good eveningForum: Themes and Templates
In reply to: [Vantage] Problem postSorry I do not speak much English … I did not realize the need to copy the functions in the file!
Now it’s working thanks to you! A thousand thanks ??Forum: Themes and Templates
In reply to: [Vantage] Problem postGreat, thank you this is probably the correct file .
I created a template -tags file with the code but it does not work , where the error comes !
Thank you very much for already helped!<?
/**
* Filter the title to shorten it. This is used by vantage_content_nav function.
*
* @param $title
* @return string
*/
function vantage_posted_on() {
$posted_on_parts = array(
‘on’ => __( ‘Posté dans <time class=”entry-date” datetime=”%3$s”>%4$s</time><time class=”updated” datetime=”%5$s”>%6$s</time>’, ‘vantage’),
‘by’ => __( ‘<span class=”byline”> par <span class=”author vcard”>%9$s</span></span>’, ‘vantage’ ),
);
$posted_on_parts = apply_filters(‘vantage_post_on_parts’, $posted_on_parts);$posted_on = sprintf( implode(‘ ‘, $posted_on_parts),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( ‘c’ ) ),
apply_filters(‘vantage_post_on_date’, esc_html( get_the_date() )),
esc_attr( get_the_modified_date( ‘c’ ) ),
esc_html( get_the_modified_date() ),
esc_url( get_author_posts_url( get_the_author_meta( ‘ID’ ) ) ),
esc_attr( sprintf( __( ‘View all posts by %s’, ‘vantage’ ), get_the_author() ) ),
get_the_author()
);
echo apply_filters(‘vantage_posted_on’, $posted_on);
}
endif;if(!function_exists(‘vantage_display_logo’)):