Ahmis
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Share Buttons Adder] PHP 8.2Also I get this on some other page template using the shortcode [ssba]:
Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /plugins/simple-share-buttons-adder/php/class-buttons.php on line 464Forum: Plugins
In reply to: [Simple Share Buttons Adder] PHP 8.2Hello! Latest version of the plugin with PHP 8.2 still gives these errors:
/wp-admin/Deprecated: Creation of dynamic property SimpleShareButtonsAdder\Plugin::$assets_prefix is deprecated in /plugins/simple-share-buttons-adder/php/class-plugin.php on line 22 Deprecated: Creation of dynamic property SimpleShareButtonsAdder\Plugin::$meta_prefix is deprecated in /app/web/app/plugins/simple-share-buttons-adder/php/class-plugin.php on line 23 Warning: Undefined property: SimpleShareButtonsAdder\Admin_Bits::$hook_suffix in /plugins/simple-share-buttons-adder/php/class-admin-bits.php on line 172
/wp-admin/admin.php?page=simple-share-buttons-adderDeprecated: Constant FILTER_SANITIZE_STRING is deprecated in /plugins/simple-share-buttons-adder/templates/admin-panel.php on line 16 Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /plugins/simple-share-buttons-adder/templates/admin-header.php on line 12
Warning: Undefined array key "google" in /plugins/simple-share-buttons-adder/php/class-admin-panel.php on line 1740 Warning: Trying to access array offset on value of type null in /plugins/simple-share-buttons-adder/php/class-admin-panel.php on line 1740Also I found this on the front end when using shortcode [ssba]:
Warning: Undefined array key "ssba_bar_buttons" in /plugins/simple-share-buttons-adder/php/class-buttons.php on line 598
Can you please fix these?Hi,
Changing public => true fixed this. Thank you for your help!
I checked this again with our site. It seems that categories Primary term selection is visible, but the problem is custom taxonomies = Primary term selection is not visible there like it used to be.
Thank you for your quick reply! I tested this with WP’s default theme and latest versions (tested this before also without the default theme). Now the primary term selection is visible, so maybe there’s a conflict in out custom theme. Thank you for your time!
Forum: Plugins
In reply to: [Next Active Directory Integration] 504 error on curlThank you! We changed timeout settings on the server and this works now.
Forum: Plugins
In reply to: [Next Active Directory Integration] Uncaught ErrorThis is a single site and I’m not 100% sure if Kerberos is used. But I believe it’s not in use.
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & Messaging] Wrong Chat idHello!
There’s some issue with compatiblity with MySQL or something. We solved this on our site by altering db tables manually e.g:
ALTER TABLE wp_wplc_chat_sessions
ALTER agent_id SET DEFAULT 0;ALTER TABLE wp_wplc_chat_sessions
ALTER rel SET DEFAULT “0”;ALTER TABLE wp_wplc_chat_sessions
ALTER state SET DEFAULT 0;ALTER TABLE wp_wplc_chat_msgs
ALTER rel SET DEFAULT “0”;This is not a good thing though, but maybe this helps debugging the issue by plugin’s developer.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Make icon greyscale+1 vote from me for changing the icon.
Forum: Fixing WordPress
In reply to: How to remove authorHi Sammy!
Well if you want to accomplish this with CSS it should work with (hides the author box below content):
.single .entry-author { display: none; }But I think better approach would be removing it from template file (if you have access to that theme’s files).
- This reply was modified 8 years, 3 months ago by Ahmis.
Forum: Fixing WordPress
In reply to: Best way to import/export posts to another site?Hello oguruma!
Have you already tried regular export/import in WP Dashboard under Tools section?
Are those gear review posts regular WordPress posts or a custom post type posts? And after importing them to the local news site do you want them to stay that way or do you need to change their post type?
And do you specifically want to choose which posts to export (not all posts from gear review blog)?
Forum: Plugins
In reply to: [WooCommerce] Best way to move WooCommerce to another site?Hello @mjjojo!
Thank you for your reply! After all I ended up just simply exporting/importing Products and Orders so I’m gonna mark this as resolved. 🙂
Forum: Plugins
In reply to: [WooCommerce] Best way to move WooCommerce to another site?Hello @mjjojo!
I’d like to also migrate all the settings and orders etc (so basically everything my WooCommerce has in it) to the new site and if I understood correctly that export you suggested is only for the products?
Forum: Fixing WordPress
In reply to: Best way to move WooCommerce to another site?I will ask this from WooCommerce support as James suggested.
New thread can be found here: https://wordpress.org/support/topic/best-way-to-move-woocommerce-to-another-site-2/
Forum: Fixing WordPress
In reply to: Caption shortcode showing front end if inside another shortcodeIf someone is interested I solved it like this:
function picture ($atts, $content = null) { return '<div class="my-class">' . do_shortcode($content) . '</div>'; } add_shortcode('picture', 'picture');