c-m
Forum Replies Created
-
Neither of those work.
Here’s the scenario.
My site is at http://www.mydomain.com
All of my wordpress files are in http://www.mydomain.com/wordpress
All of my images are in http://www.mydomain.com/assets/images (this is where I’ve set nextgen to upload to)
Using your code above will only let me import from within http://www.mydomain.com/wordpress
I need to be able to import from http://www.mydomain.com/assets/
hope that helps make it a bit clearer.
Forum: Fixing WordPress
In reply to: Image indexing in media libraryThe images are on my server.
in the directory /assets/images
The folder is 755 and even though it’s outside of my wordpress directory I’ve set wordpress to upload to there.
Add from server will not let me browse outside of the wordpress directory.
Secondly I don’t want to copy or move the images. I just want to reference them.
Perhaps it’s never been done before. It just sounds really simple in my head. lol.
Forum: Fixing WordPress
In reply to: Image indexing in media libraryAs in my post above Add from Server is no good as you can’t browse outside of the wordpress directory.
The images purposely haven’t been uploaded via the media library as it have abysmal handling of images. Especially when you get thousands and thousands. I need a good directory structure. assets/images/europe/2008.
Plus the images aren’t exclusive to my site, I reference them around the web.
Forum: Fixing WordPress
In reply to: Image indexing in media libraryYep a brand new installation.
I checked out the add from server plugin, but it won’t allow me to search outside of my WordPress folder i.e mydomain.tld/wordpress
I also need to import folders form my site root e.g mydomain.tld/ but so far there doesn’t seem a way to do this in next gen. I might have to seek out alternatives too.
Forum: Plugins
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Import FolderWhat about outside of the wordpress directory.
For example I have my wordpress site at
defylife.co.uk
But my wordpress directory is /adventure
I’ve set nextgen gallery to upload files to defylife.co.uk/assets/images/
Now how to I import folders form here into a gallery?
Thanks
Same here. I want all my assets outside of the wordpress root since they aren’t just used by wordpress.
Forum: Plugins
In reply to: [New Nine Adaptive Images] How do I know if it's working?Likewise. What’s the best way to test this?
Forum: Fixing WordPress
In reply to: Multiple CSS files and if statementsThis isn’t working at all.
I can see that the the home class is being added to the body tag, but wordpress is completely ignoring my statement loading the second set of stylesheets.
<head> <?php if(is_home()){ ?> <link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_directory_uri(); ?>/css/bootstrap.min.css" /><link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <?php }else{ ?> <link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_directory_uri(); ?>/css/bootstrap.css" /><link href="assets/css/bootstrap-responsive.css" rel="stylesheet"><link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <?php } ?> </head> <body <?php body_class($class); ?>>I’ve two bootstrap stylesheets that I want to load. East contain different settings on gutters and widths etc.. One for my static homepage, the other for every other page.
Forum: Plugins
In reply to: [FoxyShop] Change the HTML that functions outputCool.
In your sample the line:
if ($product['code'] == "code1") {Did you mean
!=instead of==? As “code1” would be a single specific product code as oppose to a placeholder that automatically pulls in the code of the product in that particular Foxycart form.Forum: Plugins
In reply to: [FoxyShop] Change the HTML that functions outputThanks for the response.
I can see in helperfunctions.php that the line below writes “Quantity”
$quantity_title = apply_filters("foxyshop_quantity_title", "Quantity");Now I want to change this to read “QTY” which is simple enough, but how to do that using my themes custom functions.php as oppose to editing helperfunctions.php
Presumably isn’t just as simple as copying that one line and adding it to my themes functions.php?
Forum: Themes and Templates
In reply to: Comment styling issuesThanks. I never would have spotted that.
I was inadvertantly making the comment display: inline; which caused the problem.
I also need to change the button to read “Add review” rather than “Post Comment” but whist i’ve changed this in comment.php it’s had no effect at all.
Content Selector – #post-area
Posts Selector – .type-post
Navigation Selector – .stumblr-pagination
Next Page Selector – a.inactiveThat worked for me, but I might have edited the template files. Sorry I can’t really remember as my theme is heavily modified.
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Check out page not displayWhen I click checkout It’s also just displaying the product page.
Grrr
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Add star ratings (product reviews)I’m using post ratings by digital nature.
Seems to be working well.
Just a few issues:
1) Try as I might I couldn’t get ratings to appear beneath the product pictures on single product pages. This where I also wanted to move the price, options and the buy button.
2) The text-indent of the stars is just -500px. Despite me setting it up in my child theme as -9999px. It seems the plugin is over riding my style sheet.
Not really Foxyshop issues though.