Nazmul Hasan Robin
Forum Replies Created
-
Forum: Reviews
In reply to: [NHR Advanced Options Table Manager & Autoload Optimizer] An excellent toolThanks for the kind words 🙂
Hey @vasts
There are two sections called Success Page and Error Page.
Both are thank you pages based on payment status.
Feel free to update or adjust content as per your need.
Success page: https://d.pr/i/tMK1MO
Error page: https://d.pr/i/LzOEeq
Screencast: https://d.pr/v/FlIs8Y
- This reply was modified 1 year, 4 months ago by Nazmul Hasan Robin.
Such Review, Much Wow 🤩
Thank you for your kind words.
Feel free to share any requests or issues in the future too.
We would love to add in the plugin.
Cheers!
Hi @vasts
Thanks for reporting this.
We have already fixed and a release is prepared.
Hopefully it will be released in this week.
Thank you
Forum: Everything else WordPress
In reply to: Show all categories pages in WordPress sitemap?Hi,
Try using this code:
echo '<ul>'; $args = array( 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => false ); $categoriesForSitemap = get_categories( $args ); foreach ( $categoriesForSitemap as $category ) { echo '<li><a href="' . esc_url( get_category_link( $category->term_id ) ) . '">' . esc_html( $category->name ) . '</a></li>'; } echo '</ul>';It will display list of categories. Each category will be linked to the category page.
Forum: Requests and Feedback
In reply to: Website under MaintenanceWhile updating plugin or core, a .maintenance file is created which converts your site into maintenance mode.
If update goes well, then this file is deleted automatically and site works well.
If update doesn’t go well, then this file stays in it’s place and site shows maintenance error or mode.
Solution: Just remove the .maintenance file from the project root folder. Your site should work fine.