onesat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wrong display of the administration pageFinally, I removed the unit extensions and deactivated my theme.
I then activated one of the default themes of wordpress twenty twenty more precisely.
I did the manual update of wordpress with the old files before the display problem
In the end, I restored the mysql database to a month!
And, the administration page is displayed correctly!
Forum: Fixing WordPress
In reply to: wrong display of the administration pageI cleared my browser’s cache
I tried with chrome, Edge, Opera without success
I even proceeded to the manual update of WordPress as explained in this tutorialI cleared my browser’s cache
I tried with chrome, Edge, Opera without success
I even proceeded to the manual update of WordPress as explained in this tutorialupdate details
The problem remains the same
Forum: Fixing WordPress
In reply to: wrong display of the administration pageOk thanks Animesh Gaurav
Ok! Thanks!
I saw that
I will be more specific with the screenshot
I want to store the username in the store name field
link screenshot : https://lesitedugenie.com/wcv/Ok thanks!
I am using Google Translate
I did not use the right word
I mean the username
the name that the user uses to connect to the siteSorry, I’m French too. I am using Google Translate.
Do I have to use a plugins for its or a specific coding ?Thanks in advance
yes
Forum: Fixing WordPress
In reply to: notification of a new user does not workHello,
I did not update because of some settings of my theme!
But it’s set, I made the update and it works well now!
Thank you!
Hello,
I did not update because of some settings of my theme!
But it’s set, I made the update and it works well now!
Thank you!
Forum: Fixing WordPress
In reply to: the wordpress loopNow I want to show up for a category
Forum: Fixing WordPress
In reply to: the wordpress loopOK! I declared the format
$format='j F Y';
To get this
<?php echo get_the_date($format, $recent["ID"]); ?>
I even add for the time
<?php echo get_the_time('G \h i \m\i\n', $recent["ID"]); ?>
And everything works fine now!
Many thanks to you!Forum: Fixing WordPress
In reply to: the wordpress loopEverything works well except the date!
It displays the date of the current item.<?php $args = array( 'numberposts' => 10, 'offset' => 0, 'category' => 0, 'orderby' => 'post_date', 'order' => 'DESC', 'include' => '', 'exclude' => '', 'meta_key' => '', 'meta_value' =>'', 'post_type' => 'post', 'post_status' => 'draft, publish, future, pending, private', 'suppress_filters' => true ); $args = array( 'numberposts' => '5' ); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $recent ){ ?> <div class="sidebar-child"> <!-- Image de l'article & le lien --> <a href="<?php echo get_permalink($recent["ID"]); ?>" class="post-thumb preview"> <?php echo get_the_post_thumbnail($recent["ID"]); ?> </a> <h4 class="post-title"><a href="<?php echo get_permalink($recent["ID"]); ?>"><?php echo $recent["post_title"]; ?></a></h4> <span class="glyphicon glyphicon-calendar" aria-hidden="true"></span> <?php echo get_the_date(); ?> <hr> </div><?php } wp_reset_query(); ?>
A helping hand for the date