I'm customizing a WordPress theme so problem is that I've to change a link. its in Arabic for example instead of this i want to make it like this but problem is that i don't find link for the item see attached image
now how do i change its link please help.for some of the other links i can change but not this one
You can't change it because it is a page. You can remove it if you don't want it in the menu, and add another page instead or you can add a custom link, for which you can specify the Navigation label and the url.
Related
I have been thinking and searching about this
But i can't find the results..
Is it possible that if you click on a category "men" in a WP/ Woocommerce Shop that it will show a different logo then the main logo?
Like if you go to http://ninethemes.net/avano/wordpress/1/shop/#
And you will click a category like "men' that the Logo will change?
So yes, how can i do that the fastest way?
You can use jQuery or PHP. In jQuery detect a click on a category and then change the logo. For example by naming the logos the same as the category name.
In PHP you would need to edit header.php: detect which category you are on and replace the img with the one you want.
I would go for the PHP option.
I am new in prestrashop. I am working on http://www.how2brich.com
website. There is about menu. I have putted content of this menu through admin but i want to change some data inside the code.
the link is showing http://how2brich.com/content/4-about-us this.
I am not content folder and 4-about-us page for change code.
Any one plz help where to get about-us page content.
To change content of this page go to Preferences >> CMS and if you want to change the code go to "/themes/yourthemename/cms.tpl" but keep in mind it will change all CMS pages code so add a condition(like if , else) to add specific code for this page.
To get content editor "about-us" page please enter Back-Office. Then Preferences->CMS. And then please click on button "edit" on the "about-us" line.
If you need to change the code (template) of the cms pages please find the template on the path "themes/your_theme/cms.tpl"
So I'm attempting to create a dynamic WordPress link that displays within a post which would change according to the subject page that displays that post.
The link is displayed in a Bootstrap breadcrumb list. I'm using the WordPress "Content View" plugin to gather all posts of a given category ex. "Public Space", and display them on a specific "Public Space" page I've created within WordPress.
The dynamic link currently in use displays the proper title of the category of post being viewed, "Public Space", but it links back to the specific category page instead of my "Public Space" page that uses the proper formatting I need through the "Content View" plugin.
Is there any way to accomplish this without creating individual .php page files for each subject?
Any help would be greatly appreciated!
Here's my code for the breadcrumb:
<?php the_category('title_li='); ?>
Link to the website post with the dynamic breadcrumbs:
http://parkerrichard.com/wordpress/public-space/judgement/
Link to the page the "Public Space" breadcrumb should dynamically link to (and change depending on the post category):
http://parkerrichard.com/wordpress/public-space
Thanks,
Parker
Sorry, I didn't read your post fully. Your problem is you're using a plugin to do templating work, when you could edit the "category.php" page to look like you want.
But if you have to use the plugin, then try this:
Go to Settings > Permalinks in your admin menu.
Then set your permalink structure to custom, and put this in the box:
%category%/%postname%
Then underneath that in your category permalink name field, put a single period - .
Now your category permalinks will have: http://yoursite.com/wordpress/category-name/ instead of yoursite.com/wordpress/category/category-name/
They should link up to the right place now.
i created a wordpress website theme and i want to create a function in the header.php that function should create a menu of one link that can be changed by using any way like for example widget
this is the link :
<li>arabic</li>
and i want the function to let me change the url to go to page
like when i am in "contact-en" page the url of the link should be "contact-ar"
and when i am i page "contact-ar" the link should be "contact-en"
Why don't you use Menu for WordPress?
To use this, go to "Appearance" -> "Menus".
Make a menu with any name. Select the menu from "Main Menu" and save it.
Put your link under "Custom Links" and the text you want to show under "Label" and click on Add to menu. Repeat this process until all are put. Then save it and the menu will appear now in your header menu.
Ask me if you have any further questions regarding this topic.
Hi all, I have encountered a problem with Joomla.
There is a custom html module with link inside. Link goes to menu item, which is category list. As soon as I understand, I have to copy the following code from the link attribute of the menu item and paste it inside href.
index.php?option=com_content&view=category&id=12
But it doesn't work this way. The 404 Error Page appears.
How to make this link work properly?
Thank you.
Create a menu item linking to the category list, then when you preview it in the frontend, right click the menu item and click "Copy Link Location".
Then paste the link within the href="" and remove the http://example.com bit so it starts with index.php?com_content......
The reason why I say this is because the url you are using must be incorrect.
Hope this helps.