akinorikul
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Types Order] Affects order of other post types@thewebtailors
Thank you for the advice! I encountered the same issue as you, but at least now I’m able to establish a custom default order for my custom post type listings.Forum: Plugins
In reply to: [Contact Form 7 Database Addon - CFDB7] DIsable cfdb7 for a specific formI’ll have a look at this add-on,
Thank youForum: Plugins
In reply to: [ReOrder Posts within Categories] reOrder won’t load more than 20 postsyes they are all published. It’s a custom post type. I can give you access in pm but I don’t know if it will really help.
Forum: Plugins
In reply to: [ReOrder Posts within Categories] reOrder won’t load more than 20 postsThanks for your reply !
There should be 36 posts.
I checked my console but there is no error and I’m also in DEBUG true. I’m using v2.12.5.??
Is there somewhere in the plugin where I should look for ? In the html page code, I can see that there are 20 posts, I assume there is something in the php more than in the js. Can you point me the file in the plugin where the php query is ?
Forum: Plugins
In reply to: [ReOrder Posts within Categories] reOrder won’t load more than 20 postsI don’t have inputs with range, do I have to install something else ?
Here’s a screenshot of what I have : https://snipboard.io/ZsCAQD.jpg
Forum: Developing with WordPress
In reply to: problem with pagination and categories, tags and blogHi Bcworks,
You are right, it works (even with keeping my permastructur to
/%postname%/
)! I don’t really understand why it wasn’t the case before, I did visit the permalinks screen to refresh the rules…May I ask why do you choose to change the permastructure to
/%postname%/%category%/
?Forum: Plugins
In reply to: [Hide Content by User Role for WPBakery] problem with firefoxHi wpTerra,
Sorry, I resolve my problem, it was some margin that was no set on the row for the “patient” role.
Just a request for an enhancement, it would be nice to be able to also exclude roles in your plugin so that we could for example choose all roles except the checked ones.
Thank you for this great plugin.
Forum: Plugins
In reply to: [New User Approve] Search Users Featuresame here, can you please fix that ?
- This reply was modified 3 years, 8 months ago by akinorikul.
Forum: Plugins
In reply to: [FakerPress] FakerPress, generate users failsHi Gustavo,
I have the same problem, it says :
Fatal error: Class ‘FakerPress\Module\Utils’ not found in /wordpress/wp-content/plugins/fakerpress/modules/user.php on line 127
All the best
Forum: Plugins
In reply to: [Crelly Slider] remove animationHi fabiorino,
I can’t find any “none” value for “in animation” or “out animation”. I’ve only got Fade, Fade right/left and slide right/left/up/down for the whole slide and fade more value for text or image.
My plugin version is Version 0.8.2
Is it somewhere else ?Hi Mihai,
I have been looking on existing gateways in spec, but haven’t found anything.
Is there a reason why a global like $wpsc_cart can’t be available in transaction result page, but available anywhere else on the site ?Forum: Plugins
In reply to: [Multi Image Upload] Images aren't savingremove the line ‘console.log(image_url == undefined)’ at the end of the function
Forum: Plugins
In reply to: [Multi Image Upload] Images aren't saving@ ch6x your code works great !
When one wants to add an image it first shows an image error because there is no image chosen yet. To avoid that, hide the img by css than display it only after upload :
window.original_send_to_editor = window.send_to_editor; window.send_to_editor = function(html){ if (formfield) { fileurl = jQuery('img',html).attr('src'); jQuery('#img-'+img_id).attr('value', fileurl); jQuery('#imgupld-'+img_id).attr('src', fileurl); jQuery('#imgupld-'+itemsCount).css('display', 'block'); tb_remove(); jQuery('html').removeClass('Image'); } else { window.original_send_to_editor(html); } }; }); function addRow(image_url){ itemsCount+=1; var emptyRowTemplate = '<div id=row-'+itemsCount+' style=\'border-bottom:1px solid #EEEEEE; padding: 0 0 10px 0; margin: 0 0 10px 0;\'><input id=img-'+itemsCount+' type=\'hidden\' name=\'miu_images['+itemsCount+']\' value=\''+image_url+'\' />' +'<img src=\''+image_url+'\' name=\'miu_images['+itemsCount+']\' style=\'width:25%; padding: 2%; border: 1px solid #EEEEEE;\' id=imgupld-'+itemsCount+' />' +'<input type=\'button\' href=\'#\' class=\'Image_button button\' id=\'Image_button-'+itemsCount+'\' value=\'Upload New Image\' style=\'margin:2% 5px;\' >' +'<input class="miu-remove button" type=\'button\' value=\'Remove Image\' id=\'remove-'+itemsCount+'\' style=\'margin:2% 5px;\' /></div>'; jQuery('#miu_images').append(emptyRowTemplate); console.log(image_url == undefined) if (image_url == undefined) jQuery('#imgupld-'+itemsCount).css('display', 'none'); }
Forum: Plugins
In reply to: [Pronamic Google Maps] shortcode with array (map options)Hello Leon,
why not, I tried :function custom_pronamic_google_maps_the_content( $atts, $content=null ) { $content .= pronamic_google_maps( array( 'width' => 955, 'height' => 400, 'map_options' => array( 'styles' => array( (object) array( 'stylers' => array( (object) array( 'saturation' => '-100' ), ) ), ) ) ) ); return $content; } //add_filter( 'the_content', 'custom_pronamic_google_maps_the_content', 9 ); add_shortcode( 'custom_googlemaps', 'custom_pronamic_google_maps_the_content' );
and used [custom_googlemaps] in my post but it doesn’t work.
Am I missing something ?