webprojects
Forum Replies Created
-
Forum: Plugins
In reply to: [Super Page Cache] domain name not listed in dropdownbut i really doubt the plugin is working becuse?i? tried the “test cache”? button and i get below error. may i know how to make the plugin work ??
Page caching seems not working for both dynamic and static pages.
Error on dynamic page (https://): Seem that your website is not behind Cloudflare. If you have recently enabled the cache or it is your first test, wait about 30 seconds and try again because the changes take a few seconds for Cloudflare to propagate them on the web. If the error persists, request support for a detailed check.
Error on static resource (https:///wp-content/plugins/wp-cloudflare-page-cache/assets/testcache.html): Seem that your website is not behind Cloudflare. If you have recently enabled the cache or it is your first test, wait about 30 seconds and try again because the changes take a few seconds for Cloudflare to propagate them on the web. If the error persists, request support for a detailed check.
Please check if the page caching is working by yourself by surfing the website in incognito mode ’cause sometimes Cloudflare bypass the cache for cURL requests. Reload a page two or three times. If you see the response header cf-cache-status: HIT, the page caching is working well.
Forum: Plugins
In reply to: [A-Z Listing] How to show category and subcategory name ??appreciate any response on the above
Forum: Plugins
In reply to: [A-Z Listing] How to show category and subcategory name ??in this page https://identiti-portfolio.work/demo/coemwp/test-4/ and using the below shortcode. but in fact it shows all categories and subcategories which are here https://identiti-portfolio.work/demo/coemwp/wp-admin/edit-tags.php?taxonomy=category instead i just wanted to show only those categories or sub categories for this particular category “a-z-search” and which will be only these three ADHD, Anti-Aging & Autism . can you pls help me to achieve this ?
[a-z-listing taxonomy=”category” terms=”a-z-search” field=”slug” display=”terms” ]
Forum: Plugins
In reply to: [A-Z Listing] How to set a certain categoryi got it working with the below code. thanks so much daniel
the_a_z_listing( array( ‘post_type’ => ‘post’,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘category’,
‘field’ => ‘slug’,
‘terms’ => ‘a-z-search’,
),
),
)
);Forum: Plugins
In reply to: [A-Z Listing] How to set a certain categoryam trying the below code to list posts from a particular category but still it shows all the posts in all categories. any help would be appreciated
the_a_z_listing(
array(
‘post_type’ => ‘post’,
‘tax_query’ => array(
‘taxonomy’ => ‘category’,
‘terms’, array(‘textniz’)
)
)
);