Bastian Fießinger
Forum Replies Created
-
Hi @lozbo,
the sample you posted looks kind of strange. I’ll try to investigate this during this week. When it comes to being stuck on some settings, this is something that is already fixed in the development version of WPPedia but not live yet.
You could try to use the current development build from https://github.com/bfiessinger/wppedia/archive/refs/heads/master.zip
Kind regards
Bastian FießingerHi @rodge,
sorry for the delay and thank you for your feedback.
I’ll keep this in mind for the next update which is currently in work and will hopefully be finished within the next month.Kind regards
Bastian FießingerHi @aerendir,
I had to stop the active development due to a big internal project we had to build. That being said I have plans to continue the work on this plugin over the course of the next two months. However, I cannot give any exact dates at the moment.
Refering to ger/wppedia/issues/49#issuecomment-1064396039
Forum: Plugins
In reply to: [Woo Custom Taxonomies Coupons] Coupon not taken into accountmight be related to my problem, i posted a quick and dirty solution here:
https://wordpress.org/support/topic/not-working-if-product-is-variation/#post-14607094Forum: Plugins
In reply to: [Woo Custom Taxonomies Coupons] Not working if Product is Variationfor everyone needing a quick fix for this (keep in mind this solution is really quick and dirty but works in my situation – I’ll keep it on the plugin dev to extend it) just replace the content of
/includes/coupon-checker.phpwith the follwing code:<?php /** * @param $valid * @param $product * @param $instance * @param $values * * @return bool */ function ut_filter_woo_coupon_is_valid_for_product( $valid, $product, $instance, $values ) { $options = get_post_meta( $instance->get_id(), 'ut_tax_enabled', true ); if ( $options && $options === 'yes' ) { $taxonomies = get_post_meta( $instance->get_id(), 'ut_products_taxonomies', true ); if ( ! $taxonomies || ! is_array( $taxonomies ) ) { return false; } $taxonomy_objects = get_object_taxonomies( 'product', 'objects' ); if ( ! is_array( $taxonomy_objects ) ) { return false; } $all_product_terms = []; foreach ( $taxonomy_objects as $taxonomy_object ) { $product_terms = get_the_terms( $product->get_id(), $taxonomy_object->name ); if (is_a($product, 'WC_Product_Variation')) { $parent_product_terms = get_the_terms($product->get_parent_id(), $taxonomy_object->name); if ( is_array( $parent_product_terms ) && count( $parent_product_terms ) > 0 ) { foreach ( $parent_product_terms as $product_term ) { array_push( $all_product_terms, $product_term->term_id ); } } } if ( is_array( $product_terms ) && count( $product_terms ) > 0 ) { foreach ( $product_terms as $product_term ) { array_push( $all_product_terms, $product_term->term_id ); } } } $all_product_terms = array_unique($all_product_terms); foreach ( $taxonomies as $taxonomy ) { if ( in_array( $taxonomy, $all_product_terms ) ) { return true; } } return false; } return $valid; } add_filter( 'woocommerce_coupon_is_valid_for_product', 'ut_filter_woo_coupon_is_valid_for_product', 10, 4 );Forum: Plugins
In reply to: [Woo Custom Taxonomies Coupons] Not working if Product is Variationedit: forgot the check for
if ( is_array( $parent_product_terms ) && count( $parent_product_terms ) > 0 ) {right before pushing the parent product termsHey @mycodetips,
we are currently working on a full documentation for theme and plugin developers, as well as a user guide for implementation.
As long as you’ll have to wait for this I’ll try to support you as good as I can.
Can you tell me a little bit about where you start to struggle and what you intend to do?
First of all after the installation you will notice a new menu item in the wordpress admin menu called “Glossary”. Under this menu item there are submenu items for configuration and creating new glossary terms.
To create a new term just click the create button, now you can write your first glossary article.
If you want to setup the configuration just click on WPPedia Settings and change everything as you want.
If you want to change your glossary URL’s just go to {yourdomain.com}/wp-admin/options-permalink.php where you have options to change the permalink base, which is “glossary” by default and choose whether you want to use the first letter in the URL or not.
Also: We are currently working on a big update focusing on the “glossary frontpage” which is currently only a static frontpage that act’s like a default wordpress page which might be a bit misleading at the moment.
Plus, more options and a Customizer which will be available soon.Kind regards,
Bastian Fießinger – WPPedia- This reply was modified 5 years ago by Bastian Fießinger.
Forum: Reviews
In reply to: [Glossary by WPPedia - Best Glossary plugin for WordPress] Fatal ErrorHey @mycodetips,
looks like there has been an error with PHP versions prior PHP 7.4.
I just created a hotfix release to remove this error for you!Kind regards
Bastian Fießinger – WPPediaThank you. In our testing phase GeneratePress was one theme we tested with the Layout. Unfortunately we just made tests with the default imagesizes of a fresh WP Installation.
I just added a small fix to get around this and will adjust the layout in a more bulletproof way.
Thanks anyway for trying the plugin!
Kind regards
Bastian Fießinger – WPPediaForum: Plugins
In reply to: [WooCommerce PayPal Payments] Intermittent Payment ErrorWe encountered a similar error. A payment failed and the user is now not able to pay it even from the my-account page.
I think this might be related to this issue here on github:
https://github.com/woocommerce/woocommerce-paypal-payments/issues/140In our case the user also created an account during checkout.
For your interest. I have just discussed the
use initial character in URLpermalink option with the team and we will integrate this feature in the free version of WPPedia.It will be pushed in an update very soon.
Kind regards
Bastian Fießinger – WPPediaHey @whistlerdan,
thanks for reporting this. Can you tell me which theme you are using there? Plus would it be possible to send me a link to the page, so I can try to fix this issue for you ASAP!
- This reply was modified 5 years, 1 month ago by Bastian Fießinger.
Hey @whistlerdan,
thanks for your suggestions. You are right, the SEO part coming from this option could be hard to handle if someone switches to PRO later on. Especially because PRO is not available yet.
I will discuss this anytime soon. We could do something like automatic redirects from the plugin site. But I will let you know.
Also I will do something about the visuals. Currently it might be some confusing as you say.
Appreciate your feedback! Are you okay with closing this issue for now?
Also please let me know if you have further feature requests or found some issues 🙂
Kind regards
Bastian Fießinger – WPPediaHey @whistlerdan,
I just published a new version of WPPedia which fixed the issues mentioned above.
Now I want to clarify what is the real purpose of the WPPedia frontpage option:
Using this option removes the original Glossary archive and overrides it with a custom defined page. This page is now used as the frontpage for example in the WPPedia navigation home link.You can then use shortcodes like
[wppedia_navigation]– to display the glossary navigation[wppedia_searchform]– to display the glossary searchform
Other Shortcodes, Widgets, or Blocks will follow soon.
The intention of this frontpage is to let the user define page content that may display glossary categories, date specific articles or just a custom entry text. (keep in mind these features are not in core yet but are planned for upcomming releases)
Hope that helps you! If everything’s fine now feel free to set the issue status to resolved.
Kind regards
Bastian Fießinger – WPPediaHey @whistlerdan,
thanks for posting this topic. So I will try to make things clearer at this moment.
It seems like we made a mistake in a previous update which makes WPPedia fail on changing the permalink base. I will update by the end of the day. I will also make the Attention warning dismissable there.Also the
use initial character in URLis active by default. This can be adjusted with the PRO version we will launch soon.For the frontpage. Yes you are right, the frontpage setting currently displays the content provided by the page itself. If you want to use an archive there just leave this setting blank – We have to adjust this a little bit.
Please excuse the misunderstandings. WPPedia is still in a very early stage but we will try to fix any bugs in the next few weeks.
Hope that helps.
Kind regards
Bastian Fießinger – WPPedia