FahimMurshed
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Re-install of XAMPP, followed by 1.000s of error messages!For updating the WordPress core files, please read this https://www.ads-software.com/documentation/article/updating-wordpress/#manual-update
Forum: Localhost Installs
In reply to: Re-install of XAMPP, followed by 1.000s of error messages!Would you please use LocalWP instead of the XAMP/MAMP development tools?
You can check this article: https://wpengine.com/resources/local-wordpress-development-environment-how-to/.
Let me know if you are still facing the problem.
Forum: Themes and Templates
In reply to: [Niche Blog] How to change number of tiles on front pageTo add a footer menu, simply access the “Appearance > Menus” option. After updating your theme, you’ll have this feature at your disposal.
I appreciate your support for the #Niche_Blog theme. Kindly consider leaving a rating and review for this theme.
Forum: Themes and Templates
In reply to: [Niche Blog] How to add legal pages on the Footer MenuTo add a footer menu, simply access the “Appearance > Menus” option. After updating the theme, you’ll have this feature at your disposal.
I appreciate your support for the #Niche_Blog theme. Kindly consider leaving a rating and review for this theme.
Forum: Fixing WordPress
In reply to: How to increase speed of ajax?I have checked you are using a commercial theme.
For support of commercial themes or plugins, go to the official support channel.
In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations. Doing this will provide the developer with the income they need to make WordPress awesome.
Forum volunteers are also not given access to commercial products, so they would not know why a commercial theme or plugin is not working properly.
Ultimately, the vendors are responsible for supporting their commercial product.
Forum: Themes and Templates
In reply to: [Niche Blog] How to change number of tiles on front pageGo to “Settings > Reading >” change the “Blog pages show at most” numbers “10” to “15” and click on the “Save Changes” butoon.
Refer to this guide: https://www.ads-software.com/documentation/article/settings-reading-screen/
Thanks.
Forum: Themes and Templates
In reply to: [Niche Blog] How to change number of tiles on front pageThanks for your suggestions.
Forum: Themes and Templates
In reply to: [Niche Blog] No SidebarHi
I can’t see any problem on the sidebar https://prnt.sc/PvodlfK7vQJ0
Forum: Fixing WordPress
In reply to: How to migrate from WordPress 3.5.2 to last version?I am glad to know that helps.
Cheers!
Forum: Fixing WordPress
In reply to: Fatal Error – ninja-formsDelete the Ninja Forms complete from the Plugins folder. It seems the NF conflicts. I would highly suggest ask here https://www.ads-software.com/support/plugin/ninja-forms/.
Forum: Everything else WordPress
In reply to: Adding Google fonts to 6.3-rc1 and 2023 themeIt would be great if you ask here https://www.ads-software.com/support/theme/twentytwentythree/
Forum: Fixing WordPress
In reply to: How to migrate from WordPress 3.5.2 to last version?I would highly suggest following this article https://www.ads-software.com/documentation/article/updating-wordpress/#manual-update.
Before updating the core, make sure you have take a backup of the full site (files and database).
I verified the One-click Update works fine in my localhost from WordPress 3.5.2 https://www.ads-software.com/documentation/wordpress-version/version-3-5-2/ to the latest version.
Don’t forget to check this https://www.ads-software.com/about/requirements/ before updating the core.
Hi @kafleg,
I overlooked that. I’ve added more. I appreciate your response.
Forum: Developing with WordPress
In reply to: Changing textI have checked that you are using the Astra theme. That’s not CSS but add some PHP code to change the text strings.
Add this code to the child-theme functions.php file to change the text strings.
add_filter('comment_form_defaults', 'wpastra_custom_comment_title', 20); function wpastra_custom_comment_title( $defaults ){ $defaults['title_reply'] = __('Leave Your Thoughts Here...', 'astra'); return $defaults; }
If you want to change the title tag, use this.
add_filter( 'comment_form_defaults', 'leave_a_comment_title_tag' ); function leave_a_comment_title_tag( $defaults ){ $defaults['title_reply_before'] = '<p id="reply-title" class="comment-reply-title">'; $defaults['title_reply_after'] = '</p>'; return $defaults; }
Further any Astra related, support, I would highly suggest post it here https://www.ads-software.com/support/theme/astra/.
Are those features available in the free or Pro version? I was under the impression that they were only included in the free version.