Forum Replies Created
- AuthorPosts
- October 31, 2012 at 11:18 pm in reply to: Select box and image name overlapping in store gallery #54431Xpark MediaKeymaster
@ tfos74,
this must me an issue with your theme’s styles, some html were modify to improve page validationXpark MediaKeymasterif you just want to change the background color just make sure that your css selector is more specific or as I mentioned before jQuery Colorbox will allow you to change the whole theme.
I have not used WordPress HTTPS but there is no need (as you can see xparkmedia.com is running on SSL)
add these 2 lines of code to your wp-config.php file
define('FORCE_SSL_LOGIN', true); define('FORCE_SSL_ADMIN', true);
and this code to your .htaccess file
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://DOMAIN.com/$1 [R=301,L]
Xpark MediaKeymaster@jamie.clauss,
looks like you have a cache plugin that is not allowing the page to update properly if you click the update button multiple times it will show different versions of the cache page, please disable all cache on the cart and checkout pages.
Xpark MediaKeymasterall,
the idea on this plugin is to simplify the creation of galleries without sorting thought hundreds of images assign them the price.if you want to assign just a separate price per image this is not the plugin for you, the wp-commerce plugin could be a good option.
@kmaisch,
galleries and images are both “custom pots types” images(ims_image) galleries (ims_gallery). but both have different features.Xpark MediaKeymasterif you are using version 3.1.7 there is a new value that you can add to the shortcode to display all the galleries [image-store all=true]
Xpark MediaKeymasterI couldn’t find a public gallery to check the issue, could you please provide a test gallery, we ran a few test and we couldn’t duplicate the issue.
Xpark MediaKeymaster@pathmukamar, there ara a few form styles on your theme that may affect other forms not just the image store, I sugget contacting the theme developer, in the mean time here are a few styles that can fix the issues
input[type=chekcbox] { -webkit-appearance: checkbox; } input[type=text] { -webkit-appearance: text; } #ims-pricelist { text-shadow: none; color: #666; } div.ims-field.ims-submit input { height:auto; padding: 1px 3px; }
Xpark MediaKeymasteryou can change the colorbox.css stylesheet. Other option is to install the “jQuery Colorbox” this will allow you to change all colorbox settings and theme.
Xpark MediaKeymasterthis looks like a server problem, and we haven’t able to duplicate the issue on three servers that we have. If you can grant us access to your test server (WP administration account) we will be glad to fix it and will provide it to all user on the next release.
Xpark MediaKeymasterslideshows will show all images in the gallery but it has its own pagination you can control the display under settings > slideshow
Xpark MediaKeymasterThis will be easier using css and that way you can upgrade the plugin without problem. Other options are:
to activate the tools widget, that will remove the navigation and will allow to use a widget to place the navigation where you want it. settings > Tools Widget
to use Image store API to remove the navigation, add the following code to your functions.php file
function mytheme_remove_main_imstore_nav($nav){ return array(); } add_filter('ims_subnav', 'mytheme_remove_main_imstore_nav');
Xpark MediaKeymasterThe sort order currently only works on galleries not albums the only way to currently control the sort order is to create your own gallery template and using a custom loop. There is an example template within the image store plugin image-stroe/theme/taxonomy-ims_almbum.php
Xpark MediaKeymasteryou need to move the file “taxonomy-ims_album.php” to your theme’s folder (or child theme is preferred ), and make the modifications there, also in the image store settings make sure your album template is set up to use the default template.
For the most part all you will have to modify in the file is html around the loop; things like header, footer, sidebar etc.
Xpark MediaKeymasterThis will be easier using css and that way you can upgrade the plugin without problem. Other options are:
to activate the tools widget, that will remove the navigation and will allow to use a widget to place the navigation where you want it. settings > Tools Widget
to use Image store API to remove the navigation, add the following code to your functions.php file
function mytheme_remove_main_imstore_nav($nav){ return array(); } add_filter('ims_subnav', 'mytheme_remove_main_imstore_nav');
Xpark MediaKeymasteryes, you can use the “Taxonomy-ims_album.php” as a guide, for more information in how to use the WordPress loops take a look at this links
http://codex.wordpress.org/Class_Reference/WP_Query
http://codex.wordpress.org/The_Loop - AuthorPosts