WordPress - Modifying the MediaFlux theme - wordpress

I have installed the MediaFlux theme from Mojo-Themes on my website at www.sjsueconomics.org. Here are my questions:
As you can see on the website, the blue menu at the very top of the page currently displays Page Titles. I want to display External Links there instead. How do I modify the code to do it?
The main menu (red text below the logo) currently displays Categories. Without changing the style or appearance, I want to display the Page Titles instead. How do I do it?
Thanks in advance!

The company you paid for the theme provides support, not a community which has no access to this product.
http://wordpress.stackexchange.com ; customizing a paid theme while providing no code (and having no right to provide any code) is not an appropriate subject for a StackOverflow question

if the theme supports custom menus, there ought to be a Menus page in the admin, under Appearances probably, or perhaps Settings. Go there, then create a menu with the pages or categories you want, then tell the theme to use the menu you created instead of the default. If the theme doesn't have such a feature, you'll need a programmer.

Related

Is there a way i can customize an Electro theme WordPress site masthead?

I need help in achieving the following:
Move the shoping cart infront of the search button.
fiting the menu items in the page, several are disapearing to the right
This is a very broad question. I'm unfamiliar with the theme but guessing it uses WooCommerce?
It sounds like you may want to create a Child Theme on this new theme and edit it that way - if you're adamant on using it.
https://developer.wordpress.org/themes/advanced-topics/child-themes/
WooCommerce offers lots of documentation on how to edit their themes by creating your own template files which overwrites the default ones they use.
https://docs.woocommerce.com/document/woocommerce-theme-developer-handbook/

Text Along slider on wordpress site

I have a wordpress site I'm designing for a friends school. If you look at the home page:
http://freelanceaccounting.co.za
There is a slider there. Now i want to insert some text next to it But it doesn't work it either puts it above or below it.
is there a plugin I'm supposed to use?
Hello you are using the education hub theme and huge slider which is not default by the theme.
May be theme contains the option to add text on their default slider. Please check that. if you want to use that plugin of huge slider then you can also check for that option. if it has not any option then you need customization either by theme or plugin.

Drupal ecommerce theme no correctly viewed

Im quite new to drupal, At the moment ive been trying to install a commerce theme but i dont get the correct appearance of it
the original theme
how it looks in my localhost
i have alreay installed drupal commerce, panels, ctoold, views etc... can sosmebody tell me what has gone wrong and how do i get the original look of the theme
There is a lot of things you need to do after installing the theme.
After installing new theme you should do the following:
Change default logo to your site logo.
Check what menu items are displayed and manage them in your structure>>menus
Add slider images by checking where to add the images (Read your theme readme.txt)
Add content so as to display in appropriate areas.
Add Products to your site.
Configure home page link.
Configure your categories / popular categories tags blocks.
Configure special offers block. May be you need to create a view with block display.
Place search block in appropriate region.
I am listing few and you can figure out rest if anything is not at its position.
Note: Generally the theme provides you basic regions, templates, css and icons structure, and you have to manage your site content so as to get the look and feel.

Wordpress Pages Vs. Categories

I am using a wordpress theme that is placing my pages and catagories in the opposite places I want them (See Below). Is there a way I can pragmatically switch the places where the pages (about, contact, apps) with the categories? I've looked around but cant find anyone who has had a similar issue.
If the theme supports changing menu items, then #golddc's answer tells you what to do. But if the theme doesn't support it and you're not ready to develop a theme from scratch, you may be able to modify the existing theme:
Go into the Wordpress back-end and navigate to Appearance > Editor (two options below Appearance > Menu).
Find the file on the right that governs the site's header. This is probably header.php. The right file will hopefully include wp_list_pages(); and wp_list_categories(); somewhere, since these are the functions which, predictably enough, tell Wordpress to list the site's pages and categories, respectively.
Switch the locations of wp_list_pages(); and wp_list_categories(); and see if that has the desired effect.
You can check the "Menu" settings in the WP backend, which you can find at Appearance -> Menus. If the theme supports it, you can create menu items with categories.
Check here for how to use the menus:
http://codex.wordpress.org/WordPress_Menu_User_Guide
If the theme doesn't support that (although I think Menus is supported) and it's definitely needed, you may have to consider developing your own theme.

Custom Menu Link Descriptions

I am building a custom WordPress theme and need to add descriptions to my custom menu links. According to WordPress, there is a way to do this:
"The description will be displayed in the menu if the current theme supports it."
Does anyone know how to support this?
Thanks in advance,
Tim
Wordpress' documentation on this is misleading. It actually took me quite some time to find out how to do this myself. As long as your theme supports menus (meaning, you've Registered a Custom Menu within functions.php or elsewhere), you can add Link Descriptions and other useful information by default.
In order to SEE these options, go to Appearance->Menus and click on Screen Options (up in the top right-hand corner of the screen). You will be able to enable the options you like under "Show advanced menu properties".

Resources