F C
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Watermark] Watermark not applying to existing imagesYour 1.6.4 release did not resolve the issue. It does not apply the watermark to existing images. Looking for another solution.
Forum: Plugins
In reply to: [Contact Form 7] Does Akismet check the your-message field for spam?With regards to my question above, I figured out why my text fields are disappearing from my forms when I try and add akismet validation checks. If you’re using PLACEHOLDER, it has to be added last OR after you enter akismet attributes. For example:
This is WRONG:
[text* your-name placeholder "Name" akismet:author]
This is CORRECT:
[text* your-name akismet:author placeholder "Name"]
Definitely a bug in the shortcode at run-time.
Forum: Plugins
In reply to: [Contact Form 7] Does Akismet check the your-message field for spam?When I add akismet:author to field construct, the field disappears on the front-end. Completely removed from code and only an empty p tag is in its place. Why is this happening?
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] Width of RecaptchaThat resolved it. Thanks!
Forum: Plugins
In reply to: [User Switching] come back to admin when user profile is in frontendThe switch back link doesn’t do anything. It just logs you out of the current user profile you’re logged in with. Leaves you on the same page.
I was able to modify the code and force it to return back to the USER list in admin.
Open /wp-content/plugins/user-switching/user-switching.php
Save a copy of it. Open the production version, then locate line 548:
//'redirect_to' => urlencode( self::current_url() ), 'redirect_to' => urlencode( "https://www.YOURDOMAIN.com/wp-admin/users.php" ),
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tabs missingCollation value for that column is UTF8MB4_unicode_520_ci
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tabs missingForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tabs missingThis is for me to resolve, as I am experiencing the same issue you originally faced and fixed. I now want to fix it for me.
You wrote: “Ok i have changed the collation using notepad++ and uploaded Db file, then everything working fine.”
But now you are saying you didn’t change collation in Notepad++. Which means you changed it in the DB table structure. So which did you choose from the collation column?
https://pasteboard.co/GBEUVVL.png
- This reply was modified 7 years, 4 months ago by F C.
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tabs GoneNo worries, know that I appreciate your time on this.
In fact, I did. I opened the DB file in Notepad++ and performed string replacements. At this point, I’m not sure I want to re-import the entire site. If possible, I’d like to mitigate the value inside the meta_value field for yikes_woo_products_tabs.
In another thread which you are currently following, I think I may be able to pull this data into Notepad++ and just convert the encoding, and paste it back in. But I’m not sure which encoding value to use.
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tabs missingAha… that makes sense now. Can you tell me which option you chose in Notepad++ Encoding drop-down menu?
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tabs missingI’m speaking about the collation value, for the meta_key column, in the postmeta table.
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tabs GoneI’m using Collation utf8mb4_unicode_520_ci on the staging site, where the tabs work and appear, and on the production postmeta table structure it is the same, but the tabs are not visible in the back-end or the front-end.
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tabs missingWhich UTF8mb4_unicode subset specifically? You can’t just change it to UTF8MB4.
Forum: Plugins
In reply to: [User Switching] Redirect to Users Page Instead of Current URL?Also, the following CSS styles will help if you are running a custom theme, just dump to your styles.css and upload:
#user_switching_switch_on {position:absolute; top:80px; left:80px; z-index:100000000;} #user_switching_switch_on a {font-size:16px; color:red; font-weight:bold;}
Forum: Plugins
In reply to: [User Switching] Redirect to Users Page Instead of Current URL?Disregard, I figured it out. If you want to redirect the footer link to the admin areas Users page, so the admin can switch to another user, in /plugins/user-switching/user-switch.php modify lines 464 through 467 with the following:
`public function action_wp_footer() {
if ( ! did_action( ‘wp_meta’ ) && ! is_admin_bar_showing() && $old_user = self::get_old_user() ) {
/* Translators: 1: user display name; 2: username; */
$link = sprintf( __( ‘Switch back to %1$s (%2$s)’, ‘user-switching’ ), $old_user->display_name, $old_user->user_login );
$url = add_query_arg( array(
// ‘redirect_to’ => urlencode( self::current_url() ),
‘redirect_to’ => urlencode( “https://www.yourdoman.com/wp-admin/users.php” ),
), self::switch_back_url( $old_user ) );
echo ‘<p id=”user_switching_switch_on”><a href=”‘ . esc_url( $url ) . ‘”>’ . esc_html( $link ) . ‘</a></p>’;
}}`
Be sure to update the redirect URL to your domain.