UnPointZero
Forum Replies Created
-
Forum: Plugins
In reply to: [UnPointZero Slider] wp-content url hardcodedThank you man ! Will fix it on the next update :).
C ya !
Forum: Plugins
In reply to: [UnPointZero Slider] Featured images shows larger sizeHi,
Seems problem fixed.
BTW, please read the readme next, you’ve to setup the plugin properly to work and to re-upload your images OR resizing-it with the auto-resize plugin : http://wordpress.org/extend/plugins/regenerate-thumbnails/Regards,
Forum: Plugins
In reply to: [UnPointZero Slider] auto resize not working..Seems to be fixed… 🙂
Forum: Plugins
In reply to: [UnPointZero Slider] Slider Stopped Working SuddenlyHi,
Seems to work just fine now :).
Forum: Plugins
In reply to: [UnPointZero Slider] Description in Featured navigation itemHi,
I think we’re going to add this on the next plugin version. BTW, sorry for the response time.
Regards,
Forum: Plugins
In reply to: [UnPointZero Slider] Compatibility with WPML pluginHi Dominykas,
We’re using WPML here 🙂 !
Can you tell me what we’ve to do to make our plugin compatible ? Think it’s not so hard to do for us and it will be an honor to make our plugin compatible with yours.Regards,
Forum: Plugins
In reply to: [UnPointZero Slider] Interid not workingThink this bug is solved on 3.2 ! Just update your plugin.
C ya !
Forum: Plugins
In reply to: [UnPointZero Slider] Limit number of posts/pages being displayedHi 🙂
Sorry for the response time…
Go on Slider settings => Display settings => Number of slides => Set it to 4 :).
Need more info to fix this. Can you please send us your website url ?
Thanks
Forum: Plugins
In reply to: [UnPointZero Slider] [Plugin: UnPointZero Slider] Thumbnail title problemPlease send your wordpress URL.
Thank you!
Hi mihaita,
Just go on UnPointZero slider options on your WP admin then “Display settings”. Here you’ve Max. number of caracters for the description, just enter the number of characters you want :).
Hope it works !
C ya
Forum: Plugins
In reply to: [UnPointZero Slider] [Plugin: UnPointZero Slider] only shows halfHi adch,
NextGEN Gallery doesn’t use the WordPress media uploader I think…
Check if you can set an image size on Nextgen gallery options, this is the only solution…Forum: Fixing WordPress
In reply to: Rewriting custom url problemOk think I’ve found a fix, here’s the code :
// Ajout rewrite rules function ftc_flush_rewrites() { global $wp_rewrite; $wp_rewrite->flush_rules(); } function ftc_add_rewrites() { global $wp_rewrite; $ftc_new_non_wp_rules = array( 'templates-wordpress/page/(\d+)' => '/index.php?pagename=templates-wordpress&pnum=$1', 'templates-wordpress/categorie/(\d+)/page/(\d+)' => '/index.php?pagename=templates-wordpress&catid=$1&pnum=$2', 'templates-wordpress/categorie/(\d+)' => '/index.php?pagename=templates-wordpress&catid=$1' ); $wp_rewrite->non_wp_rules = $ftc_new_non_wp_rules; } function add_rewrites_php($ruleswp) { global $wp_rewrite; $ftc_new_non_wp_rules = array( 'templates-wordpress/page/(\d+)' => 'index.php?pagename=templates-wordpress&pnum=$1', 'templates-wordpress/categorie/(\d+)/page/(\d+)' => 'index.php?pagename=templates-wordpress&catid=$1&pnum=$2', 'templates-wordpress/categorie/(\d+)' => 'index.php?pagename=templates-wordpress&catid=$1' ); return $ftc_new_non_wp_rules + $ruleswp; } add_filter('rewrite_rules_array', 'add_rewrites_php'); add_action('generate_rewrite_rules', 'ftc_add_rewrites'); add_action('admin_init', 'ftc_flush_rewrites');Anyone can tell me if there’s a way to optimize that ?
Thanks
Forum: Plugins
In reply to: [UnPointZero Slider] [Plugin: UnPointZero Slider] thumbnail block on the leftAmba,
Salutations de Metz ! 🙂
Forum: Plugins
In reply to: [UnPointZero Slider] [Plugin: UnPointZero Slider] thumbnail block on the leftHi Amba_13,
I recommand you to add this lines to your theme CSS file because when you update the plugin, CSS file will be overwrited.
To make sure CSS rules change, just add !important at the end :
#upz-slideshow-display{ float:right !important; } #featured ul#upz-slideshow-navigation { left:0; right:auto !important; }C ya !