Anass Rahou
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editing wp-config fileHello there!
Do you refer to the changes that you will make in
wp-config.php
file of your installation?WordPress updates will not change your new uploads folder path in the configuration
wp-config.php
file.Forum: Fixing WordPress
In reply to: Displaying certain categories on frontpageYou are welcome!
Glad to help you.
Forum: Fixing WordPress
In reply to: Custom Header Won’t ShowWhere is the link of screenshot please?
Forum: Fixing WordPress
In reply to: Custom Header Won’t ShowHello Jamie!
Can you include please a screenshot of that problem using https://prnt.sc/ to see it?
Forum: Fixing WordPress
In reply to: Displaying certain categories on frontpageYou can do that easily with a native function that WordPress includes by default, as you can see in the following code.
<ul> <?php wp_list_categories( array( 'orderby' => 'name', 'include' => array( 3, 5, 9, 16 ), 'title_li' => '', ) ); ?> </ul>
This code will show you the category names with a link. Just change the numbers to the IDs of your desired categories that exist in your website.
You can past that code in the place when you want to show it in any file of your current theme. For example sidebar.php.
If you want a solution more quick and practice for beginners, you can use the Display Categories Widget plugin.
Let me know if this helps you.
Forum: Networking WordPress
In reply to: Images in internal search resultsHello Irene!
What are you looking to do exactly with your two websites? Show the images in the search results or not show them.
Please include the URL of your other website to compare them, and see what might be happening.
Forum: Fixing WordPress
In reply to: custom post type and searchHello there!
It seems that you are looking to create a classified website where your visitors or users can plublish their own offer or item to sell.
You can try for example a plugin called WPAdverts – Classifieds Plugin, that you can install for free.
There are also a couple of themes that are designed to fit an adverts website needs. You can find more on Themeforest for example.
Let me know if this helps you.
Forum: Fixing WordPress
In reply to: Full site overlayThere are several ways and methodologies to realize that effect. This depends to a large extent on the resources (theme or plugin) that you have, and creativity capabilities.
With that theme, I’m pretty sure that you can do (almost) exactly the same background effect.
The decision to buy the theme depends on you and the budget you have, I can not assure you anything.
Forum: Fixing WordPress
In reply to: Full site overlayHello there!
The used theme at that website is BeTheme, one of the most famous themes in WordPress.
This theme include a lot of features that will allows you to make a webiste with similar effects and backgrouds, or even using a page builder like WPBakery Page Builder.
Forum: Fixing WordPress
In reply to: Comments being deletedHello there!
Can you please confirm me is users comments appear in your wp-admin dashboard Comments section?
Forum: Fixing WordPress
In reply to: Can’t access admin area after installing Jetpack pluginHello there!
I recommend you to access your website directory via FTP, and in the
/wp-content/plugins/
folder, findjetpack
folder. You can delete or just rename that folder.Ater that, go back and try to access your wp-admin dashboard. If all things are fine now, then it is a compatibility problem in your site.
You can deactivate all your plugins and activate one by one, to find which one of them is causing this mistake.
Let me know if this solves your problem or not.
Forum: Fixing WordPress
In reply to: Displaying certain categories on frontpageDo you mean that you want to display your 20 desired category names, and each one of them with a URL link in a Widget?
Forum: Fixing WordPress
In reply to: Changing email in general settingsYour are welcome!
Forum: Fixing WordPress
In reply to: Hide Link to images while hovering over themHello there!
Do you refers to the images that appears in your website posts?
When you upload an image and add a new image to your post, make sure before to choose the choice None in the drop-down list Link To, as you can view in that image in the link down bellow.
Let me know if this solves your problem.
Forum: Fixing WordPress
In reply to: Displaying certain categories on frontpageHello there!
Just like WordPress documentation page of that code says, that functions is designed to show specific category or categories on your frontpage.
function ar_home_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '3' ); } } add_action( 'pre_get_posts', 'ar_home_category' );
I have tested this code on my local website, and it works perfectly.
Please make sure that your category ID is correct and corresponds to that category you need.
Can you tell me how did you get the ID (11) of the category that appears in your code, and where are you puting it?