Hax
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Store] Gallery Templateif the theme is setup properly and provide page templates you can go to settings > gallery > “Gallery template” and select the template that you want to use for your gallery.
Forum: Plugins
In reply to: [Image Store] Image StoreNo, not by default. If you have knowledge of WordPress API you can use the plugin’s hooks to create a secondary plugin.
Forum: Plugins
In reply to: [Image Store] Page will not show full widthRUPHOTO,
there are two setting that allow you to control the theme, one is for the albums and other for the galleries.
Please check both settings. also we couldn’t find any galleries in your site.
Forum: Plugins
In reply to: [Image Store] IM Store Cart not workingcan you please provide a link to your site for us to look at it. or try some of the solutions on the official forum.
Forum: Plugins
In reply to: Is there an alternative to NextGEN? It has become unuseable for me.Image store plugin is a good alternative, it has an option disable all store features and it can be used just to manage galleries.
Forum: Fixing WordPress
In reply to: Alternative to Nextgen gallery?you can use the image store plugin and disable all store features and you can use it jsut to manage galleries.
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] alternativeI know this is a old post, but other people my find it useful:
you can use the image store plugin and disable all store features and you can use it just to manage galleries,
Forum: Plugins
In reply to: [Image Store] Adding wrong items to cart… Helpdo you have a cache plugin? looks like that is your issue also you servers response is very slow.
before continuing using the plugin test it in a subdomian same server with out any other plugin.
On the Xpark media forum try reseting your password, we tried it and it works, we think is a cache issue on our part we fix it.
sorry, we won’t make the change if you want to remove the styles and add your own try this code
function remove_pop_widget_styles( ){ wp_dequeue_style( 'popular-widget' ); wp_enqueue_style( 'popular-widget', get_template_directory_uri() . '/pop-widget.css' ); } add_action( 'wp_enqueue_scripts', 'remove_pop_widget_styles',100 );Add it to your child theme functions.php file.
Forum: Plugins
In reply to: [Popular Widget] Before you open a new threadJon,
Apologies, we recently made modification on the the site and we did not notice the issue. We’ve fixed the issue, thank you for let us know.
Forum: Plugins
In reply to: [Popular Widget] Firefox weird white spaceI see your account created, you may have to reset your password.
for the spacing it may be related to your previous post, there was another line that needed to be fixed. could you provide a link to your site?
Forum: Plugins
In reply to: [Popular Widget] Markup Errorthank you for the feedback it will be fix in the next release.
Forum: Plugins
In reply to: [Image Store] Add text to Image Store galleryYou can use the excerpt text area
Forum: Plugins
In reply to: [Image Store] Download photos of GallerieNot by default, custom coding will be needed using the plugin’s hooks
Forum: Plugins
In reply to: [Popular Widget] Feature Request: Add Tab to Show Custom CategoryTo add a new tab use the “pop_defaults_tabs” filter, this an array of all available tabs.
my_plugin_add_new_tab ( $tabs ){ $tabs['new_tab'] = _('My new tab') return $tabs; } add_filter( 'pop_defaults_tabs', 'my_plugin_add_new_tab' )Then use “pop_new_tab_tab_content” action to output your tab content
my_plugin_new_tab_content( ){ return "content"; } add_filter( 'pop_new_tab_tab_content', 'my_plugin_new_tab_content' );Be sure to use the latest version.