WP Libra
Forum Replies Created
-
Sorry but you are going to have to ask for support at themeforest from the vendor you bought it from. These forums only support the free themes since we have access to the code.
Forum: Fixing WordPress
In reply to: Would you use a Network???I would read Multilingual_WordPress
Then decide if you want to use a plugin (which could cost money) or just make 2 seperate sites. Personally I would just make 2 different sites.
Forum: Fixing WordPress
In reply to: Linking photos or making photos not be clickableBeing lazy I would just view source on that page. Copy the entire gallery output source code and paste it in your page and manually change the links.
<div id='gallery-1' class='gallery galleryid-18 gallery-columns-2 gallery-size-medium'> ALL THE OTHER CODE THAT IS IN BETWEEN THAT I AM NOT GOING TO PASTE </div>Forum: Fixing WordPress
In reply to: Linking photos or making photos not be clickableIs your home page set as a static page?
If so edit the page and swap to HTML mode.
Remove the
<a href="">IMAGE CODE</a>surrounding the image code.Forum: Fixing WordPress
In reply to: Menu title helpEnter the below info into that box
Name – Fat Burning Foods
URL – #Click add to menu.
Now drag that up to where your old menu item for Fat Burning Foods was and replace this new one with it.
You are basically putting in a custom menu item that won’t go anywhere when clicked but you need to replace the Category Menu item you currently have.
Forum: Fixing WordPress
In reply to: Menu title helpThat is how. By changing the URL to # when adding a Custom Link the title will not be clickable.
Don’t add it through Categories. Add it though Custom Link.
Forum: Fixing WordPress
In reply to: want to create wordpress gallery link ending with hashtagI am not good at regular expressions and all that good stuff so I would need to fix it by trial and error.
But it would be something like below adding to functions.php
add_action('generate_rewrite_rules', 'attachment_rewrite_rule_14924'); function attachment_rewrite_rule_14924($wp_rewrite){ $new_rules = array(); $new_rules['attachment/(\d*)$'] = 'index.php?attachment_id=$matches[1]'; $wp_rewrite->rules = $new_rules + $wp_rewrite->rules; }My first attempt would be changing it to
$new_rules['attachment/(\d*)$#image']Like I said I suck at regular expressions so I can’t help you anymore than this.
Forum: Fixing WordPress
In reply to: Menu title helpAppearance > Menu
Add a custom link.
Name – Fat Burning Foods
URL – #Then just add that to the menu and add your sub menu items below it.
What theme and shopping cart are yo uusing?
Maybe a link to the page would help to. But there’s no way to answer your question without more details.
Forum: Fixing WordPress
In reply to: Customized SearchI am assuming they want you to enter this into your functions page.
Appearance > Editor
Select functions.php on the right side and paste that in at the very bottom. If you have a
?>tag at the very bottom then paste above that.
*note if you mess up functions.php you can white screen yourself out of your site and only recoverable through FTP. So make sure you know what you are doing when messing with this file.
Forum: Fixing WordPress
In reply to: want to create wordpress gallery link ending with hashtagCan you explain this more?
Do you just want to append #image onto every attachement URL? For example a final output would be.
wp-content/uploads/picture.jpb#imageMay I ask why also? Might be a better way.
Forum: Fixing WordPress
In reply to: category permlinks when blog is not on the homepageLittle confused.
What do you want the title to link to?
What do you want the read more link to link to?Can you post your loop on page.php? Might be easier just to do it there?
Forum: Fixing WordPress
In reply to: Page not found error on websiteDid you swap back to the default theme and did it work then?
If so you need to go to themeforest where you bought the theme and ask for support. These forums don’t support the paid theme since we do not have access to the files and frankly they got paid already to support you.
Are you making your menu under appearance – menu? Everything you are looking to do is fairly simple there.
Forum: Fixing WordPress
In reply to: Would you use a Network???Not sure what you mean by network or really what you are asking. Can you try to rephrase?