Muhammad Javed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal ErrorHello,
actually your function is not found so for the time being you can add this code at the end of functions.php file and file location is /home3/bidfree/public_html/blogs/wp-content/themes/ashe/functions.phpfunction get_parent_theme_file_path(){
}
Forum: Fixing WordPress
In reply to: WordPress update & themeHello,
no it will not cause any issue to themeForum: Fixing WordPress
In reply to: WordPress site not working from open internetForum: Fixing WordPress
In reply to: My replies to comments are tagged as “anonymous”Hello,
you can go through this link,
https://www.bloggingtriggers.com/post-guest-comments-wordpress/
or this
https://www.wpbeginner.com/wp-tutorials/how-to-allow-users-to-post-anonymous-comments-in-wordpress/Forum: Fixing WordPress
In reply to: My permalinks now have the dateHello,
you need to go to wp-admin -> setting -> permalinks and select post by name.
https://www.screencast.com/t/Xyoty0Agy
and click updateForum: Fixing WordPress
In reply to: Type ColorHello,
you can add this cssspan.woocommerce-Price-amount.amount {
color: green;
}on that location file (/wp-content/themes/avant/style.css)
Forum: Fixing WordPress
In reply to: Restore Deleted user and contentHello,
sorry you can not restore but if you contact to hosting may be they restore your deleted data from databaseForum: Fixing WordPress
In reply to: How quickly does the Theme Editor update your site?Hello,
its not taking any time plz check do you have any cache plugin install, if yes then clear cache and go to frontend and press ctrl + F5 button 2 or 3 time to refresh page.- This reply was modified 7 years ago by Muhammad Javed.
Forum: Fixing WordPress
In reply to: Back to homepage after certain time?sorry for late reply
<script>
setTimeout(function(){
window.location = “<?php echo home_url();?>”;
}, 5000);
</script>Forum: Fixing WordPress
In reply to: Back to homepage after certain time?ok can you send me file or code where you added ?
Forum: Fixing WordPress
In reply to: Back to homepage after certain time?can you send me url of website where you add this code
Forum: Everything else WordPress
In reply to: How to edit my username / or delete my profile here?Hello,
the simple way you can edit from your database, do you have access of your cpanel ?Forum: Fixing WordPress
In reply to: Back to homepage after certain time?Hello,
yes you can use javascript code which redirect to home page.
<script>
setTimeout(function(){
<?php echo home_url(); ?>
}, 3000);
</script>where 3000 is 3 second you can add this code in your header or template file.
Forum: Fixing WordPress
In reply to: Page not foundHello,
add this style into your style.css file
h1.vc_custom_heading {
float: left;
}i hope that will work.
Forum: Fixing WordPress
In reply to: Changing header image in custom CSS templatei am telling you the simple way another solution is change the image name from the css file. search this css.css file from this location wp-content/thesis/skins/heartspring/css.css and go to line number #188 and write your uploaded file location instead of this images/page_header_about.png
- This reply was modified 7 years, 1 month ago by Muhammad Javed.