MagicFire
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: User post deletion abilityThanks.
So only solution for me would be to create my own capability for users allowing only to move the post to trash.
Resolved, I just need to rearrange the the options.
Forum: Fixing WordPress
In reply to: Excerpt for the pagesThe code
add_post_type_support( 'page', 'excerpt' );will add standard excerpt separate field for page.It’s custom made theme (I didn’t make it, I got this site from my predecessor). I doesn’t search my theme, because I thought that read more link is standart part of the excert function. Thanks, I will search my theme for this.
Forum: Fixing WordPress
In reply to: WP with BuddyPress user registration problemOK, classic problem, plugin from the 3rd side.
Forum: Fixing WordPress
In reply to: WP with BuddyPress user registration problemI find out,that the problem was caused by this:
do_action('user_register', $user_id);to which was connected following plugins:
- Alo-Easymail
- WP-admin/user.php
- wp-admin\includes\template.php
- buddypress\bp-blogs\bp-blogs-functions.php
- buddypress\bp-members\bp-members-signup.php
- buddypress-auto-group-join\php\bp-auto-group-join-init.php
Even if I commented
add_action( 'user_register', name_of_fcn)
in each of this files, still the password won’t show in DB. Only if I comemented thedo_action('user_register', $user_id);in the wp-includes/user.php , now the password appears in DB. Are there any others functions (exept that above) that are conected to this hook? Because even if I disabled them, the hook still causes me trouble.Thanks
Forum: Everything else WordPress
In reply to: Move installed WP to another siteThanks, I’ve allready figured it out. I just need to change .httaccess
I found this little thing, called ReWriteBase and needed to change it to “/”. It contains previous subfolder name.
As always, the simplest thing is the hardest to find.