Mian Shahzad Raza
Forum Replies Created
-
Thank you for your feedback, I will look into this matter.
Forum: Reviews
In reply to: [WPAC Social Tools - Like, React & Share] This is awesomeYour feedback is much appreciated, sure we will add more options soon.
Forum: Plugins
In reply to: [WPAC Social Tools - Like, React & Share] Enable non-loggedin users to voteYour requested features are added. Feel free to provide your feedback.
Forum: Plugins
In reply to: [WPAC Social Tools - Like, React & Share] Enable non-loggedin users to voteDear, I built this plugin for my experience and as an experiment. I am quite busy with projects and stuff. But I have now decided to add some more features to this plugin because I have received such requests.
Forum: Fixing WordPress
In reply to: Page load error on homepageWell, website loads fine for me. Try clearing your browser cache, I believe it’s only for you.
Forum: Plugins
In reply to: [WPAC Social Tools - Like, React & Share] only registered users can voteYes, I am working on it and this feature will be added soon.
Forum: Plugins
In reply to: [WPAC Social Tools - Like, React & Share] reaction from non-logged usersYes, I am working on it and this feature will be added soon.
Forum: Plugins
In reply to: [WPAC Social Tools - Like, React & Share] This plugin is just great.I am marking this ticket as solved.
Forum: Plugins
In reply to: [WPAC Social Tools - Like, React & Share] This plugin is just great.Hi,
We have fixed the issue (breaking templates). Please update to version 2.0.1Forum: Developing with WordPress
In reply to: Best way to store likes for non logged-in usersWell, then I think I should provide an option to the user for selecting between logged-in or non-logged-in users. If uniqueness is not required then I should use sessions approach or IP based system?
Forum: Developing with WordPress
In reply to: Create Post with Meta Field – WP REST APIHi,
Thank you so much, it worked..Forum: Developing with WordPress
In reply to: Create Post with Meta Field – WP REST APIThis is my Ajax Code, all other fields working fine except meta value is not being added in post
jQuery( document ).ready( function ( $ ) { $( '#post-submission-form' ).on( 'submit', function(e) { e.preventDefault(); var title = $( '#post-submission-title' ).val(); var excerpt = $( '#post-submission-excerpt' ).val(); var content = $( '#post-submission-content' ).val(); var status = 'draft'; var meta = array( 'key' => 'video_url_url', 'value' =>'abc' ); var data = { title: title, excerpt: excerpt, content: content, status: status, meta: meta }; $.ajax({ method: "POST", url: POST_SUBMITTER.root + 'wp/v2/posts', data: data, beforeSend: function ( xhr ) { xhr.setRequestHeader( 'X-WP-Nonce', POST_SUBMITTER.nonce ); }, success : function( response ) { console.log( response ); alert( POST_SUBMITTER.success ); }, fail : function( response ) { console.log( response ); alert( POST_SUBMITTER.failure ); } }); }); } );
- This reply was modified 7 years, 7 months ago by Mian Shahzad Raza.
Forum: Fixing WordPress
In reply to: Remove Parent Category from Child Category URLOkay,
I found a solution which solved the category URL problem from child category URL’s
https://wordpress.stackexchange.com/questions/6106/remove-parent-category-from-permalink-basically-only-have-the-child-categoryBut it does not removed the parent category from posts URL’s.
ie:
https://mysite.com/parent/child/post-name
INTO
https://mysite.com/child/post-nameAnyone can help a bit further ?
Forum: Plugins
In reply to: [WooCommerce] Display Downloads CountHi,
thanks for your quick response. i am in a bit of situation and would be glad if you could help with above code a bit more.
I have multisite network and i want to display download count in main site where woocommerce is setup in other site in network
want to display stats here https://stylothemes.com/
where woocommerce is setup over here https://stylothemes.com/shop/Forum: Themes and Templates
In reply to: Clickable Submenu on Mobile Screensif someone came looking for solutions for same issue. please follow https://stackoverflow.com/questions/36004328/clickable-submenu-on-mobile-screens/36004884?noredirect=1#comment59671769_36004884