Desraj Kumawat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Broken Image in Blog PostsHI @bhumendrapal
Your image extension is missing; you need to add .jpg. Once you do that, it should work. Please check
your blow url is working fine
https://awaraj.com/wp-content/themes/optimax-child/assets/img/noimage/noimage_320x320.jpg
- This reply was modified 1 year, 6 months ago by Desraj Kumawat.
Forum: Fixing WordPress
In reply to: Homepage IssueHI @carrido13
Go to Settings > Reading in the WordPress dashboard.Under Your homepage displays, ensure that A static page is selected.
- For Homepage, choose the page you want to display as the homepage.
- For Posts page, select a separate page to display your blog posts (if you have one).
After making these selections, click Save Changes.
Or Page Conflicts or try to Disable Plugins One by One..
Thank you@leave12
Hi, sorry for the inconvenience. Could you please share the URL of your info section? Perhaps you’ve added a custom size via CSS there..
Thank youForum: Fixing WordPress
In reply to: page previewcan you please recheck your custom themes. there page.php exit or not. or pointed proper or not. please can you please share little more details its will be good for me.
Sorry can you please let me know more details as well please
- This reply was modified 4 years, 11 months ago by Desraj Kumawat.
Forum: Fixing WordPress
In reply to: Restore WordPress websiteHi,
Please contact your website hosting provider maybe they have to help you. because Sometime hosting server also have backup after deleted data.
Forum: Fixing WordPress
In reply to: Changing background color of Donation buttonHi
add like also
form#give-form-107 button.give-btn.give-btn-modal {
display: #fff;
background: #da3434;
}Forum: Fixing WordPress
In reply to: Warning: Cannot modify header informationPlease add this code before get_header() functions
Forum: Fixing WordPress
In reply to: Website title in Google shows ‘Home’Hi,
Please add this in function.phpadd_filter(‘wp_title’,’custom_page_title’,10,1);
function custom_page_title($title){
if(is_front_page()){
$title=’Your new title’; //define your title here
}
return $title;
}- This reply was modified 8 years, 11 months ago by Desraj Kumawat.
Forum: Plugins
In reply to: [WooCommerce] How to remove Breadcrumbs from shop page ?Hi karsen
Give a try with following:
add_action(‘template_redirect’, ‘remove_page_breadcrumbs’ );
function remove_page_breadcrumbs(){
if (is_page(‘YOUR_PAGE_ID_OR_SLUG’))
remove_action( ‘woocommerce_before_main_content’, ‘woocommerce_breadcrumb’, 20, 0);
}