Suman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Website Disappearedif you have access to code,check if database exists for this portal.
Take backup and then try to repair.
if database has been deleted, you can ask webhost support to help for same.Forum: Fixing WordPress
In reply to: Weird Code displayed..?We can add this in many ways.
1.Check settings of theme related to header where this shortcode might be added.
2.Check Widgets, where this shortcode might be added.
3.If it is hardcoded, then it might be in files.Hope this helps ??
- This reply was modified 5 years, 2 months ago by Suman.
Forum: Fixing WordPress
In reply to: Weird Code displayed..?[bc_cart_icon id=51473] (top right) on desktop versions
[aws_search_form]
This is shortcode which displays cart and might be possible you have removed this plugin in which this shortcode is written.If you dont need then remove this code.
Please check with the webhost,this might be a problem due to firewall.
Also refer this post:
Curl errorForum: Fixing WordPress
In reply to: website goneCheck with your webhost and domain subscription.
Might be your domain subscription is expired.Forum: Fixing WordPress
In reply to: Fatal error on websiteWhich WordPress Version is installed on website?
Check this post it might help you here
Check with your webhost for PHP-FPM processes.After restart,it may work.
Forum: Fixing WordPress
In reply to: ATOM Feed (need the URL)@niallasd
No, We cannot change as this is default URL for atom feed to show.
Still, I found some articles this might help you:1. https://wordpress.stackexchange.com/questions/28242/rewrite-custom-post-type-rss-feed-links
2.https://wordpress.stackexchange.com/questions/263403/change-default-rss-feed-urlThanks
Suman W.Forum: Fixing WordPress
In reply to: Individual Product Pages are Blank in Woo Commerce@yukon819
Ok,when i inspected your website it shows javascript error for paypal plugin So i suggested you to disable that plugin.As suggested, can you switch to any other theme and check it?
Forum: Fixing WordPress
In reply to: Individual Product Pages are Blank in Woo CommerceHello @yukon819
Please deactivate this plugin and check
Woocommerce Gateway Paypal Express Checkout
and then test it.Hope this helps.
Thanks
Suman W.Forum: Fixing WordPress
In reply to: ATOM Feed (need the URL)Hi @niallasd,
/atom – this is a default wordpress url to show atom feed.
For more details,check here:
Thanks
Suman W.Forum: Developing with WordPress
In reply to: How to replace shortcode with its result into the database?@brvnbld
You can add shortcodes in Posts and Pages or direct in theme/function file.
For shortcodes,
Process you need to follow to create new shortcode is:1.register shortcode with its paramenters and callback function
2.create callback function and add logic
3.prepare shortcode syntax and call in functions or theme file.For more details check the articles which I found it would help you:
1.Article 1
2.Article 2Thanks
Suman W.Forum: Fixing WordPress
In reply to: Removing post excerpts completelyModify function code and set priority,
function trim_excerpt($text) { return ''; } add_filter('get_the_excerpt', 'trim_excerpt',40);
- This reply was modified 5 years, 2 months ago by Suman.
Forum: Fixing WordPress
In reply to: Removing post excerpts completely@colby-ross , you can try this function:
function trim_excerpt($text) { return ''; } add_filter('get_the_excerpt', 'trim_excerpt');;
Note:If you are working with main/parent theme,first create child theme of parent theme and then modify functions.php
Hope this helps you ??
Thanks
Suman W.- This reply was modified 5 years, 2 months ago by Suman.
Forum: Fixing WordPress
In reply to: The wp_options table is not okayForum: Fixing WordPress
In reply to: I Can’t Change Theme and make new post on my WordPressI think you have updated WordPress core files.
First take backup of WordPress,and then update WordPress.Hope this helps.
Thanks
Suman W.