writegnj
Forum Replies Created
-
Did you mean you went back to previous version?
I noticed the same thing.
Is it even possible to get the settings from previous version since it changed significantly?– It does not seem like [wpuf_addpost] will work anymore since it allows you to create multiple forms.
– Default setting on previous version has been changed such as Category and Date. Category is now optional on each form. Date input moved to Pro version.
function privacy_post_status($postarr) { foreach ($_POST['post_status_select'] as $post_status) { $postarr['post_status'] = $post_status; } return $postarr; } add_filter( 'wpuf_add_post_args', 'privacy_post_status' ); add_filter( 'wpuf_update_post_args', 'privacy_post_status' );This worked for dropdown.
I found why the first error showed up on my site.
In previous version, it has a setting for default category but in new version you need to specify category on each form. If you don’t it goes to no category. (As far as I tested, it does not have any value for category)That broke my breadcrumb rendered before the content cause it does not have category.
Just writing it down for someone who might have same issue.
Forum: Plugins
In reply to: [Theme My Login] Any ways to remove toolbar option on profile setting page?That works! thank you!
Forum: Plugins
In reply to: [Theme My Login] Any ways to remove toolbar option on profile setting page?So I uploaded profile-form.php in my theme folder in below location.
My theme folder/theme-my-login/templates/profile-form.php
and removed from profile-form.php but nothing seems to be changed. Any advice?
<h3><?php _e( 'Personal Options', 'theme-my-login' ); ?></h3> <table class="form-table"> <tr class="show-admin-bar user-admin-bar-front-wrap"> <th><label for="admin_bar_front"><?php _e( 'Toolbar', 'theme-my-login' )?></label></th> <td> <label for="admin_bar_front"><input type="checkbox" name="admin_bar_front" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> /> <?php _e( 'Show Toolbar when viewing site', 'theme-my-login' ); ?></label> </td> </tr> <?php do_action( 'personal_options', $profileuser ); ?> </table> <?php do_action( 'profile_personal_options', $profileuser ); ?> <h3><?php _e( 'Name', 'theme-my-login' ); ?></h3>Forum: Plugins
In reply to: [Page Animations And Transitions] Loading image in betweenI’m working on the new design on GoodnightJournal.com and wanna see if I want to use your plug-in on the new design.
Forum: Plugins
In reply to: [Page Animations And Transitions] Loading image in betweenThank you for the quick response!
Loading Page with Loading Screen seems to be working good with your plugin.
However, I noticed that Loading Page with Loading Screen does not work smoothly sometimes (it stays at 0% and stop loading the page. seems like it’s happening to other people as well).Do you think I can just add animated GIF loading image in between?
Forum: Plugins
In reply to: [Comment Rating Field Plugin] Pro version bugsPlease see below image for above issue.
Can you PLAESE FIX THIS BUG and a bug on Star size on excerpt?http://postimg.org/image/8idgo5i4f/
Thank you!
Forum: Plugins
In reply to: [Comment Rating Field Plugin] Pro version bugs// Average Label + Link to Comments if ($group[$settingGroup]['linkToComments']) { $ratingHTML .= '<a href="#comments">'.$group[$settingGroup]['averageLabel'].'</a>'; } else { $ratingHTML .= $group[$settingGroup]['averageLabel']; }on line 1265 on comment-rating-field-pro-plugin.php, how is this going to work on excerpt? since it does not define the link to the post page that has the comments.
So seems like in WP 4.1, you need to add
"add_args" => falseinto your plginate_links.Add this into in paginate_links array on wpuf-dashboard.php
See below for more info
https://core.trac.wordpress.org/ticket/30831Seems like this is still happening that post author can edit all the comments from other users as well.
@ronald did you fix this issue yet? anything I have to set up in the setting to prevent this?
It seems to me has a problem with redirect after submitting a post. I want redirect to be the new post that I just submitted.
After I hit submit button it redirect me to
http://MYSITEURL/ADDPOSTPAGE/?action=wpuf_pay&type=post&post_id=1872
which is the same page of writing a post.editing wpuf-add-post.php line 484
wp_redirect( $redirect );
to
wp_redirect( get_permalink( $post_id ));fixed the issue for me for now but I’m not sure this is the best way to solve this issue.
Anyone has better solution for this?
Forum: Plugins
In reply to: [Wp Subcribe Author] [favourite-author-posts] not working on custom thememy bad for didn’t pay enough attention on documents. I found “rel=”author” attribute.” under FAQ page.
So I question ended up with the removing the mouse over effect. As you know, it’s not user friendly. Is that a any way to remove it?
I would like to have a subscribe button after the author info. not all the links for author page.
Forum: Themes and Templates
In reply to: [Ohsik] ohsik and IE8mark as resolved!