ThemeMoz
Forum Replies Created
-
First of all this is not support question, so we are going to close this ticket. Second we don’t have any relation with Moz and apologies because our designer just did that, later we notice that its same as moz inc logo.
We will update our icon and banner soon as our designer team is working on it. We change our name from Moz SEO because as per moz in trademark, we cant use this word related anything seo, which we didn’t know.
As we already talk with Moz in team, we both don’t have any problem with this plugin now. And after changing banner and icon, We hope no one will face this confusion.
N.B: Don’t reply this ticket as we wont reply again, if you or anyone have question please contact us directly vai email at: [email protected]
Thanks
Forum: Fixing WordPress
In reply to: WP Upload ErrorIf you changed Upload folder permission, then you should clear your browser cache and also check your internet speed. Sometime because of the slow connection this error happened.
And another solution that work, is delete .htaccess file. But dont forget to keep backup.
Forum: Fixing WordPress
In reply to: several errorsAs it is a premium theme, Developer should provide you support. I will recommend you to contact with the theme developer.
Forum: Fixing WordPress
In reply to: 'Fatal Error' after changing functions.php theme optionsMy guess is that your functions.php still has bad code in it. Suggest that you check again that you have made the correct changes on the correct file. OR BETTER AGAIN, restore a copy of the original file.
Or If possible share your functions.php file code Here.
Otherwise force your site back to using the default theme, do this by renaming your present theme directory in “wp-content/themes”.
If you need help with fixing your functions.php file, then download a copy to your computer and use this PHP syntax checking site:
https://www.piliapp.com/php-syntax-check/Forum: Fixing WordPress
In reply to: "Watermark"YOu can add logo in your site header easily. ANd if you want to add Watermark on your images, you can do it also easily. There are so many Plugin available in WordPress plugin directory. Such as:
Forum: Fixing WordPress
In reply to: Website Completely down after updateYour site is not accessable. You can contact with your Hosting provider to get it resolved. because its look like there is a problem in your Databse server.
Forum: Fixing WordPress
In reply to: Account System for WordPressYou are welcome and don’t forget to mark this ticket as solved. ??
Forum: Fixing WordPress
In reply to: Account System for WordPressOK, There are two way you can do this:
* User either Membership plugin and messaging system
* Use projects management system.If you want to use custom Projects management system, then your cusotmer can create their own account or you can create for them. I will recommend to use this as its open source.
https://github.com/shameemreza/clientmanagement
And if you want to use WordPress projects management plugin then you have two option:
https://www.ads-software.com/plugins/wedevs-project-manager/
https://themology.net/shop/wordpress-project-management-plugin/You can check all those, I am sure you will get your solution.
Forum: Fixing WordPress
In reply to: Account System for WordPressPeople whoever will pay can register, you can do this way. Or people can apply for their account and you can approve them manually. Its easy matter.
I dont think there is any confusion.
Let me know what actually confusing you?
Forum: Fixing WordPress
In reply to: Setting up Paid Membership Pageusing Membership plugin its easy to get it done. Even you can use Woocommerce too, because they have Learning management plugin and Membership too.
There are some other plugin also can check to get it done which are:
https://www.ads-software.com/plugins/s2member/
https://www.ads-software.com/plugins/rs-members/
https://www.ads-software.com/plugins/simple-membership/
https://thememoz.com/product/moz-membership/I already used above and they are pretty cool. Some other plugin you may use too which are built only for teaching membership site:
https://www.learndash.com/
https://flyplugins.com/wp-courseware/I hope you will get your perfect match from above.
Forum: Fixing WordPress
In reply to: Tags and categories are not working properlyI think its permalink problem. First check your hosting server setting where url rewrite enable or not. After then just got Permalink setting and press on save button.
This should solve your problem.
Forum: Fixing WordPress
In reply to: Account System for WordPressI think you need to use a Membership plugin or Profile management plugin. And for making uploading attachment option, you can use any form builder.
Forum: Fixing WordPress
In reply to: I want to change address bar for my postChange your permalink structure to post from default should do as you want.
Forum: Fixing WordPress
In reply to: How do I get Recent Post Titles on my home screenLet me know which method did you use, so that I can advise you the right method. And if you want, you can use this code to show latest post:
<?php if (is_front_page()) { ?> <h1 class="entry-title">Recent posts</h1> <div class="entry-content"> <ul style="list-style-type:none"> <?php global $post; $myposts = get_posts('numberposts=5'); foreach($myposts as $post) : setup_postdata($post); ?> <li style="font-size:110%">» <?php the_time('d/m/Y'); ?> — <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; } ?> </ul></div>
Forum: Fixing WordPress
In reply to: disable auto update?YOu can try this plugin: https://www.ads-software.com/plugins/stops-core-theme-and-plugin-updates/
Including @markrh I am leaving some moret ips to stop auto update for themes and plugins:
Disable automatic WordPress plugin updates:
add_filter( 'auto_update_plugin', '__return_false' );
Disable automatic WordPress theme updates:
add_filter( 'auto_update_theme', '__return_false' );