Eduardo Pittol
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Migrating my custom website to WPI this page https://codex.www.ads-software.com/Theme_Unit_Test has a WXR file that you can use as example. It has categories and images too.
Forum: Fixing WordPress
In reply to: Permalinks problemIts something wrong, he must put 2 in page. Maybe did you create a page with the name sklep?
Forum: Fixing WordPress
In reply to: Permalinks problemThe website redirect https://raskon.pl/sklep/page/2 to https://raskon.pl/sklep/2. Try install this plugin:
https://www.ads-software.com/extend/plugins/monkeyman-rewrite-analyzer/
Test this url sklep/page/2 and see the result.
Forum: Fixing WordPress
In reply to: Blog automaitcally redirectingWhen the website stopped work? When you installed the the, did it work?
Forum: Fixing WordPress
In reply to: Permalinks problemAre you have the module rewrite actived?
Forum: Fixing WordPress
In reply to: Please help! my site has suddenly gone blankWe need more informations, you try disable all plugins? If don’t back the website, try change the WP_DEBUG to true. And post here.
Forum: Fixing WordPress
In reply to: Filter Posts by Custom Field Key and Value?You can use this hook:
https://codex.www.ads-software.com/Plugin_API/Action_Reference/pre_get_posts
Try it:
function exclude_category( $query ) { if ( is_archive() ) { $query->set( 'orderby', 'meta_value' ); $query->set( 'meta_key', 'your_meta_key' ); } } add_action( 'pre_get_posts', 'exclude_category' );
Forum: Fixing WordPress
In reply to: Blog automaitcally redirectingTry create a installation with only the theme.
Forum: Fixing WordPress
In reply to: Migrating my custom website to WPYou can pass the content for the WXR content and import using the wordpress importer.
Forum: Fixing WordPress
In reply to: WordPress permalinksYou don’t need insert it in the .htaccess, the right way is use how the links that i passed above. To test the rewrite rules you can use this plugin:
https://www.ads-software.com/extend/plugins/monkeyman-rewrite-analyzer/
Forum: Fixing WordPress
In reply to: WordPress permalinksYou pretend use something https://affiliatelink.com/email ?
Forum: Fixing WordPress
In reply to: share content with specific usersOK. This is a little bit complex feature.
First: Set the user that can read the post.
You need create a metabox to add a input text with the user that can see the post. To do it, you can use this plugin to create the metabox:https://www.ads-software.com/extend/plugins/types/
Second: Query only the post that are for the logged user.
Third: Block the access in the post if isn’t authorized.
If you pretend that only restrict the access only registred user, you can use this plugin:
https://www.ads-software.com/extend/plugins/restricted-site-access/
It’s not easy, but is possible.
Forum: Fixing WordPress
In reply to: What is the workflow to publish?I don’t know if I inderstood your question. If you’re talking about create posts. Depend of the number of author that create content and the privileges that each one have. You can create diferents types of user. You can read more here:
https://codex.www.ads-software.com/Roles_and_Capabilities
About the themes, confers in Appearance >> Themes and see the selected.
Forum: Fixing WordPress
In reply to: WordPress permalinksWhat do you do? This form the affiliate is who fill? If I understand you need create a rewrite rule to redirect when the form is filled.
Explain all steps (scenario) of the process.
Forum: Fixing WordPress
In reply to: share content with specific usersYou can create a metabox in the post and specified who the user that see the post. And when you show the posts list, filter by user. And in the single block others user to see the content.