Maavuz Saif
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fortunato] Auto scroll downHi klax70.
it depends on the theme you are using. if you are using a free theme from www.remarpro.com please post theme name or URL here.
If you are using a premium theme, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.Forum: Themes and Templates
In reply to: last edited or updated postWherever you want display latest updated posts. just paste this code there
Forum: Fixing WordPress
In reply to: my website stop workingHi Boatrry
Seems your hosting server is down. you can check it from this URL
https://downforeveryoneorjustme.com/soarsohigh.com ask your hosting provider to look into this issue.Forum: Networking WordPress
In reply to: failed to connect to databaseHi adamjedgar,
Seems your SQL User doesn’t have permissions to CREATE tables on your database. Go make sure it has full permissions (ask your host if you don’t know what that means).Forum: Themes and Templates
In reply to: [i-max] the second portfolioHi neverending,
i would like to ask a few questions before answer. which theme are you using? and can you post URL of your website?Forum: Themes and Templates
In reply to: last edited or updated postHi ftfarhad.
Below simple function will help you on the same.<?php $today = current_time('mysql', 1); $count = 5; if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_modified_gmt < '$today' ORDER BY post_modified_gmt DESC LIMIT $count")): ?> <h2><?php _e("Recent Updates"); ?></h2> <ul> <?php foreach ($recentposts as $post) { if ($post->post_title == '') $post->post_title = sprintf(__('Post #%s'), $post->ID); echo " <li><a>ID)."'>"; the_title(); echo '</a></li> '; } ?> </ul> <?php endif; ?>
let me know if you need more help ??
Forum: Themes and Templates
In reply to: [Virtue] Homepage Layout Manager not workingHey, asaracena!
You need to contact the official support from the author of this theme. I think this is the link https://www.kadencethemes.com/support/
Forum: Fixing WordPress
In reply to: WordPress not functioning properly.Try deactivating all plugins. If that resolves the issue, reactivate each one individually until you find the cause.
If that does not resolve the issue, try switching to the default theme for your version of WordPress to rule-out a theme-specific issue (theme functions can interfere like plugins).