skip to Main Content

WordPress Sidebar display issue

I have made the sidebar sticky by using fixed sidebar plugin but the sidebar disappear when scroll back to top I have tried many other plugin but they're not working. This https://willowdaleequity.com/blog/acquire-69-unit-georgia-apartment-complex-press-release/ is the url of the website on which…

VIEW QUESTION

Hide a div using css in wordpress

This is the html of what I want to hide <div class="count"> <div class="number">1</div> <div class="text">donation</div> </div> I've tried to use the CSS code: .count { display: none; } As well as: body.page-id-750 div.count { display: none; } For ref…

VIEW QUESTION

How can I convert jQuery ajax to fetch?

This was my jQuery code before. Now I want to change it to fetch. function fetch(){ jQuery.ajax({ url: '<?php echo admin_url('admin-ajax.php'); ?>', type: 'post', data: { action: 'data_fetch', keyword: jQuery('#keyword').val(), pcat: jQuery('#cat').val() }, success: function(data) { jQuery('#datafetch').html( data ); }…

VIEW QUESTION

add conditional body class in wordpress

I want's to add conditional body classes for index.php, page.php, category.php, tag.php In index.php body class only want's <body class"home"> In page.php body class only want's <body class"page"> In category.php body class only want's <body class"cat"> In tag.php body class…

VIEW QUESTION
Back To Top
Search