tkhan
Forum Replies Created
-
Forum: Plugins
In reply to: [GEO my WP] Sort Ordersorted added order as the name and the meta key as the value…
‘<input type=”hidden” name=”order” value=”favourited”>’
Tkhan
have just noticed that none of the plupload js files are loading in the header of the buddypress page.
Forum: Plugins
In reply to: [GEO my WP] dropdowns for non hierarchical taxonomiesHi Eyal,
works a treat, thank you again!
Tkhan
Forum: Plugins
In reply to: [GEO my WP] Get Long from databaseHi Eyal,
The grave accents did the trick! The meta fields are also now working, I must have had a typo somewhere.Thanks again!
Forum: Plugins
In reply to: [GEO my WP] Show BP groups in radius?sorry posted here by mistake have removed
Fantastic Tareq,
Both the conflict with other plugins (in my case geo my wp) and the no upload featured image link seem to be resolved in version 1.2.3.
Thanks
I found that the action hook is called differently in the forked version. In the examples on this thread the action hook is added like this
add_action( 'wpuf_add_post_form_after_description', 'wpufe_taxonomy_type', 10, 2 );and called in the original add and edit files using the following code:
do_action( 'wpuf_add_post_form_after_description', $post_type );in the forked version this code is used to call the action hook:
do_action( 'wpuf_post_form', 'add', 'after_description', $post_type, $post );is there any way I can modify the code in my functions.php so it shows in the add and edit pages without editing the plugin code.
Cheers
Tkhan
Changed over to the 1.1.0-fork-2RRR-4.4 alpha version by professor99 and my taxonomy dropdowns no longer appear on the add and edit forms, has anyone else encountered this problem if so could you please give me some advice as I am stumped.
Hi got it working, I deactivated all my plugins and reactivated them one by one. I had Buddypress Media installed which was adding the attach media button I mentioned above after the upload image and add image url buttons and was obviously interfering with functionality of BuddyPress Activity Plus.
I think it is worth mentioning that if I add an image the page needs refreshed for the update to appear making it appear as if nothing has happened.
I have just discovered this plugin and it would be ideal for what I want to do
I am having issues like aboveI am using buddypress 1.7.1 and wordpress 3.5.1 and am using the default buddypress theme
bpfb directory exists with file permissions 755
Post update works for just text works as usual
Post update and attach media button work together
The upload file button works and the image is uploaded and shows preview
the add image url button works and shows previewThe add photos button causes the preview thumbnail and the update text to disappear if you click post update however the initial text is still posted but no photos appear.
Hi
There is an option in WP User Frontend > others > Show attachments in the post. Uncheck the checkbox and attachment images will not be shown
in the post.Hope this helps
Thanks that’s another problem solved, easy when you know how. I just
couldn’t get my head round it.Forum: Plugins
In reply to: [GEO my WP] Make search filter multi selectThanks ninjew,
Still not sure what files to change but will watch out for changes in the premium version and for more detailed info on the topic at the geomywp.com support forum.
Again thanks for a fast response.
Thanks to all the help in this thread I now have dropdown select boxes for my custom taxonomies on my add/edit post pages. I was wondering if anyone could give me pointers on how to display my taxonomy terms as checkboxes.
Any help would be brilliant
Forum: Plugins
In reply to: [Query Multiple Taxonomies] query post count and taxonomy countFound my answer in part, the code below displays the number of posts found.
<?php printf( '%s', $wp_query->found_posts); ?>