Umakant Sonwani
Forum Replies Created
-
Forum: Plugins
In reply to: [User Switching] Switch to user frontentHi John,
Currently I am using the BuddyPress, I want to use your plugin for following requirement.
“Users can add a second user as admin to their account. This admin has the same rights as the user.”
Can i add swtich to button on users profile in frontend?
Please take a look on my screenshot of website.
https://www.awesomescreenshot.com/image/2742024/43f5074505b6ef268a933138df480d15
Thanks
- This reply was modified 8 years, 9 months ago by Umakant Sonwani.
How you solve this issue?
Hi Thanks for Reply,
Can you give me Pro Version link , i want purchase it.
And please tell me How can i use custom fields on that plugin.Thanks
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Multiple Sort by OptionsHi Csumrell,
How call this filter function in my custom page ,///////////////////////////////////////////////////////
add_filter(‘uwpqsf_form_bottom’,’injecting_buttons’,”,4);
function injecting_buttons(){
echo ‘<label><input ‘.$desc.’ type=”radio” id=”taxhide” name=”date” value=”DESC”/>’.__(“Sort By Newest”,”UWPQSF”).'</label>’;
echo ‘<label><input ‘.$asc.’ type=”radio” id=”taxhide” name=”date” value=”ASC”/>’.__(“Sort By Oldest”,”UWPQSF”).'</label>
‘;
}add_filter(‘uwpqsf_query_args’,’injecting_custom_arg’,”,4);
function injecting_custom_arg($args, $id,$getdata){
$args[‘order’] = $getdata[‘date’];//likewise sort is the name of the order input.return $args;
}//////////////////////////////////////////////////////////
Thanks,Thanks for giving me suitable solution but I can’t understand how it works , can you give me any code snippet for example.
ThanksForum: Plugins
In reply to: [WP-PageNavi] Show Extra Number of Pages NavigationThanks, Lester for give me a suitable solution , but i am not using Custom post type , i use default post type ,
Please help me out,Thanks,
Forum: Fixing WordPress
In reply to: Two Site (Main and Mobile) and want to use same databaseThanks Tara , for giving me a suitable solution , but i want to use same table prefix and i want to change WP options for mobile site.