Forum Replies Created
- AuthorPosts
- Xpark MediaKeymaster
We just updated the pot file, please download it and try again. Also you could use the plugin source code to update your .po file.
August 16, 2013 at 1:55 am in reply to: unable to add post/page or upload image when Image store installed #54672Xpark MediaKeymasterAre you running a windows (IIS) server or apache? the plugin only has been tested on apache?
If you are running apache then there is probably a conflict with the theme. Have you tried switching to one of the default WP themes?
Xpark MediaKeymasteryou can create any page and then use this code short code
[image-store cart=1]
Xpark MediaKeymasterYou can’t do it using the settings, but you can add this code to your theme’s functions.php file or in a new plugin.
function change_ims_checkout_label( $gateways ){ if( isset( $gateways['enotification']['name'] ) && $gateways['enotification']['name'] == 'Checkout' ) $gateways['enotification']['name'] = __( 'Bank Deposit' ); return $gateways; } add_filter( 'ims_gateways', 'change_ims_checkout_label', 20 );
Xpark MediaKeymasterSorry not sure what you are trying to do, are you trying to add the text in the front-end or back-end. Are you using hooks or modifying your theme.
Or did you clicked on the “unstalled image store”?
if you just deactivated the plugin or deleted the files you can just get a fresh copy of the plugin and you the settings will be there. If you deleted your galleries only a back up from your hosting service will restore your files.
Xpark MediaKeymasterunder settings > checkout there is a setting called “Purchase Receipt”, you can control what shows in this page by editing the field.
You can’t remove the login form right now, but we could add an option next release.
Xpark MediaKeymasterIf you are using a child theme, which we recommend, add this code to your child theme’s function.php file to remove the search form. We may add an option for this on the next release.
function xclusive_child_init_actions( ){ remove_action( 'xclusive_after_main_nav_menu', 'xclusive_search_form_main_menu'); } add_action( 'wp', 'xclusive_child_init_actions' );
To change the font title, same thing in your child theme’s style.css file add the following line of code, change the font family name as needed.
div #site-title { font-family:"Arial Black", Gadget, sans-serif; }
August 14, 2013 at 2:16 pm in reply to: Unable to select and add to cart pictures in galleries #54642Xpark MediaKeymasterCan you provide a link to your test site to look at it, for the most part issues like this are javascript or css conflicts with other plugins or theme.
Xpark MediaKeymasterWe will look at it but it will take time, it will not be implemented any time soon
Xpark MediaKeymasterThis is a bug, select text as background it will display the transparency option set it and then change it to image as water mark it will still use the ‘transparency’ settings. Will fix it on the next release.
Xpark MediaKeymasterSomeone had the same problem take a look the “Upload error since last update” post, it include a snipped in how to fix it
Xpark MediaKeymasteris almost impossible to support every single plugin out and theme out there, are you can see from our site the shortcode and galleries work fine.
If you can provide a list the list of plugin you are using we can take a look at it. Other have mentioned that there are issues using the NextGen gallery with the plugin.
Xpark MediaKeymasterall you have to do download the current version and open it with potedit or download the POT file and chose the update from template to upate the current file.
Xpark MediaKeymasternot using the image store settings, you will have to make modification using Image store’s hooks
Xpark MediaKeymasterthere is an “Transparency” option in the watermark row, but you can always change your png to have the right amount of transparency and set the option to 0
- AuthorPosts