Tche111
Forum Replies Created
-
Forum: Plugins
In reply to: [Slideshow] Make slideshow biggerActually, the width was fine but I wanted a bigger height. I made it using another plugin.
Thanks a lot for your answer and support!
Have a nice day!Hi Harish,
Thanks for your answer and your proprosal.
Indeed this had nothing to do with your profile. Login started working fine again after I removed the mailchimp form from the header.
This is indeed resolved,
Sincerely,
TcheForum: Plugins
In reply to: [Theme My Login] wp-login redirects to mailchimp form on mailchimpI have activated the debug mode and didnt see any bug appearing… but I found the problem. It was coming from a the mailchimp subscription form I set in my header. After taking it out, the login is working fine with theme-my-login as well. I am no specialist but as it is working fine either with the subscription form in the header or with tml activated I deduct there is a conflict between those two codes.
I chose to keep tml and find another place for the form (which is also in the header without any trouble).
If by any chance it can help somebody…
We can consider this topic as solved.Hi Team,
I am sorry but it s not working. I pasted your code in functions.php and only that. Am I doing well?
Reading some discussions on other plugins, I learned that it could not work because it is not loaded on the right time…
What do you think,
Many thanks in advance!Hello,
I set your code into my functions.php and took off mine from header.php… but it doesn’t seem to work. When I look into Pingdom and GTMetrix, js and css still appear. I reduced cachingtime but It didnt change much.
Many thanks in advance for your help!
SincerelyForum: Fixing WordPress
In reply to: Add date & time to Recent Comment WidgetHi Johan,
Did you find the way by any chance?
I d like to do the same…Forum: Plugins
In reply to: [Collapse-O-Matic] Collapse-o-Matic not collapsingThanks a million times for your help and patience,
It s working perfectly, without disturbing anything on the website!
Great plugin, great job!!! (gonna say it in reviews)Forum: Plugins
In reply to: [Collapse-O-Matic] Collapse-o-Matic not collapsingHi Baden thanks a lot for your quick answer!
I tried the shortcodes but once inserted in my template (comments.php) they were just displayed as text in the page… so I used html tags instead as I saw it on the plugin page.
I read your link and added the magic_beans and clear tags in the template and in the style.css sheet… but it still doesnt work :/
Do you have any idea? Would you advise to go to shortcodes (but how to correctly include them in comments.php, then)?
Many thanks in advance for your help!
Sincerely,
Tche
(tst.allwewish.org/?p=718)Forum: Plugins
In reply to: [Collapse-O-Matic] Collapse-o-Matic not collapsingHi Baden, thanks a lot for your work!
I have the same issue… I guess for the same reasons than Mark.
I managed to remove the jquery loaded from google apis… but the comments are still not opening on click.
Page is here: https://tst.allwewish.org/?p=718
When I look at the code source of the page I see other jquery files and js files but I can not find the scripts nor in the header nor in the footer. Most of these are related to plugins.
Can they have an impact on collapse-o-matic?
Where can I find the scripts?Many thanks in advance for your help,
Tche
Forum: Plugins
In reply to: [Comment Images] can it move above comment buttonHello Tom,
I d like to do the same. Did you find the trick, by any chance?Forum: Hacks
In reply to: Add 1 meta to comments // Show comments by that metaHello,
1. I managed to add the dropdownlist to the commentform and record the selection in the table commentmeta, the code is given here: https://www.ads-software.com/support/topic/how-to-change-a-custom-field-into-a-dropdown-list?replies=2
2. I am still in need for the second question: How to group comments by the value of their commentmeta ? Any hack on wp_list_comments or any other solution is more than welcome.Many thanks in advance for your help!
Hopefully,Forum: Hacks
In reply to: How to change a custom field into a dropdown list?OK, I finally made it following this crystal clear tut’: https://ivetetecedor.com/how-to-use-a-drop-down-menu-for-wordpress-custom-fields
Consequently, my functions.php became:
add_action( 'comment_form_logged_in_after', 'additional_fields' ); add_action( 'comment_form_after_fields', 'additional_fields' ); function additional_fields () { echo ''. '' . __( 'Titre (Je peux...)' ) . ''. ' '; echo 'Cette solution est particulièrement utile... Dans tous les cas Sans argent Sans le temps Sans la santé '; } add_action( 'comment_post', 'save_comment_meta_data' ); function save_comment_meta_data( $comment_id ) { if ( ( isset( $_POST['title'] ) ) && ( $_POST['title'] != '') ) $title = wp_filter_nohtml_kses($_POST['title']); add_comment_meta( $comment_id, 'title', $title ); if ( ( isset( $_POST['category'] ) ) && ( $_POST['category'] != '') ) $category = wp_filter_nohtml_kses($_POST['category']); add_comment_meta( $comment_id, 'category', $category ); }
I hope it’ll help
Forum: Hacks
In reply to: How to add a custom data box in widgets areaI would appreciate any helpful suggestions.
So here are some:
– I guess the link to the tracking system should be shown on the order page… you should then try to add it there in that specific template.
– Default widgets proposed by wordpress include a text one that you could use if your order-template includes a widget area. If it’s not the case, you could create one: https://codex.www.ads-software.com/Widgetizing_Themes
– From there you coud simply show a link to the tnt homepage or to the specific page (sth like: https://www.tnt.com/webtracker/tracker.do?navigation=1&respLang=en&respCountry=th)If you wanna go further:
– Here is a plugin that s supposed to do it for many delivery companies but it s not free: https://www.woothemes.com/products/shipment-tracking/
– TNT also propose three integrated services: https://www.tnt.com/express/en_lu/site/home/shipping_tools/track_a_package/integrated.html (you need access to see details)I hope it will help
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Full size image on the 404Hi and many thanks for the answer!
Actually I managed to make it appear by creating a new class and by adding the position (relative) and a min-height as per following:
Style.css:main-404 { margin:0; padding:400px 600px 50px 50px; background: url("mysuperwebsite/.../images/BlnkLight.jpg") no-repeat center fixed; -webkit-background-size: cover; /* pour Chrome et Safari */ -moz-background-size: cover; /* pour Firefox */ -o-background-size: cover; /* pour Opera */ background-size: cover; /* version standardisée */ height: 1300px; position: relative; }
404.php
<?php /** * The template for displaying 404 pages (Not Found) * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <div id="main-404"> <span class="emphase_hugewhite">404</br></span> <span class="emphase_mediumwhite">?a n'a pas marché cette fois</br> mais vous pouvez réessayer!!!</span> <?php get_search_form(); ?> </div> <?php get_footer(); ?>
What do you think of this? Should I adapt it or can we set the topic as solved?
Sincerely,
TcheForum: Fixing WordPress
In reply to: 404 custom page templateDid you find the answer and/or maybe try this:
<?php /** * The template for displaying 404 pages (Not Found) * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <div id="main-content" class="main-content"> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <header class="page-header"> <h1 class="page-title"><?php _e( 'Ooops! Not Found', 'twentyfourteen' ); ?></h1> </header> <div class="page-content"> <p><?php _e( 'Navigating the web can be like walking on eggshells. It can make Humpty Dumpty out of us! Please report this to: <a href="mailto:[email protected]">Webmaster.</a> <br>Maybe try a search?<br> <div align="right"><span style="font-size:12px;">(photo: Jessica Rabbit)</span></div>', 'twentyfourteen' ); ?> <?php get_search_form(); ?> <p><img src="https://robbieburnsreturns.com/wp-content/uploads/2014/03/404-Broken-Link.jpg"></p> </div><!-- .page-content --> </div><!-- #content --> </div><!-- #primary --> </div><!-- #main-content --> <?php get_sidebar(); get_footer();
Tell us so you help others ??