Xpark Media

Forum Replies Created

Viewing 15 posts - 886 through 900 (of 1,644 total)
  • Author
    Posts
  • in reply to: Select box and image name overlapping in store gallery #54431
    Xpark Media
    Keymaster

    @ tfos74,
    this must me an issue with your theme’s styles, some html were modify to improve page validation

    in reply to: Cart Button & Cart Label Not Correct #50661
    Xpark Media
    Keymaster

    if 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]
    in reply to: Shopping Cart not Updating #50654
    Xpark Media
    Keymaster

    @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.

    in reply to: Diffrent Price lists for diffrent products. #50653
    Xpark Media
    Keymaster

    all,
    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.

    in reply to: List Secured Galleries? #50652
    Xpark Media
    Keymaster

    if 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]

    in reply to: Shopping Cart not Updating #50587
    Xpark Media
    Keymaster

    I 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.

    in reply to: CSS safari #50585
    Xpark Media
    Keymaster

    @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;
    }
    in reply to: Cart Button & Cart Label Not Correct #50584
    Xpark Media
    Keymaster

    you 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.

    in reply to: All but tags tab just disappear when I save… #50583
    Xpark Media
    Keymaster

    this 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.

    [email protected]

    in reply to: Slideshow to include whole gallery not just page #50529
    Xpark Media
    Keymaster

    slideshows will show all images in the gallery but it has its own pagination you can control the display under settings > slideshow

    in reply to: Looking for .php file location on the photo page #50486
    Xpark Media
    Keymaster

    @rayzor00,

    This 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');
    in reply to: Is it possible to sort Albums by Gallery name #50483
    Xpark Media
    Keymaster

    @Mallycat

    The 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

    in reply to: Nesting Albums #50482
    Xpark Media
    Keymaster

    you 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.

    in reply to: Menu layout on gallery / shop #50480
    Xpark Media
    Keymaster

    @rayzor00,

    This 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');
    in reply to: Nesting Albums #50463
    Xpark Media
    Keymaster

    yes, 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

Viewing 15 posts - 886 through 900 (of 1,644 total)