mkerv
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hestia] The colored More button is missing – how to get it backGooday
Thanks for the reply. The blue colored custom link button called Join Here on the Nav here https://likechristfellowship.church/ (example) is missing here https://givingalms.online/
Hope that clarifies
- This reply was modified 11 months, 1 week ago by mkerv.
Forum: Themes and Templates
In reply to: [Kindergarten Education] Widget not getting bordersJust to add that I have just contacted the plugin author as well as I have just realized that it could well be an issue on the plugin’s end. I should therefore accordingly update here I receive replies therefrom.
Regards
No that makes much sense. Many thanks again for now
No I agree fully. Just thought it was something I would want to be really bothered about once fully operational (especially if I can use Standard on lauch). Issue being that I had not fully assessed the benefits that particular gateway offeres that Standard does not. If possible, you could please leave it as is and I would either mark it as resolved or resurrect it once on premium (which should not be long). But if this should impair support flow on your end, then you may mark it as resolved.
Not really but I tested Paypal standard and it worked seemlessly. We can shelf this issue for now – atleast until I shall have gone premium. Many thanks for your assitance hitherto
Regards
KervinAll sent but I am testing Paypal Standard to see if it works any better. If it should, then I gues I can settle for it until further notices. I should accordingly update.
Regards
Able to disable shipping under Woocommerce but not on compaign or single product pages. Especially if I leave Product data set to ‘Crowdfunding’ instead of Simple, Variable, etc… emailing the credentials.
Thanks
Thanks I should email through the admin credentials. I have shipping disabled as I do not purpose to ship aught (like Rewards) to funders – or is that even possible?
Thanks
KervinForum: Plugins
In reply to: [WooCommerce] Payment gateway will not show up or be disabled on its pageSorry about this. While it is true that the plugin seems to have some issues disabling an enabling on it settings page (could be because of my little stale Woocomerce version), it turns out that both the product the client and I could not get the gateway to work on were simply (coincidentally) not configured to use the particular gateway. After introducing the gateway, I did try to configure each of my products to support it (being how it works) but it seems I had omitted 1 or 2.
- This reply was modified 6 years, 9 months ago by mkerv.
Forum: Plugins
In reply to: [Woo Credits] Credits option no longer showing up on checkoutSorry about this. While it is true that the plugin seems to have some issues disabling an enabling on it settings page (could be because of my little stale Woocomerce version), it turns out that both the product the client and I could not get the credits system to work on were simply (coincidentally) not configured to use credits. After introducing the system, I did try to configure each of my products to support credits but it seems I had skipped 1 or two.
Forum: Plugins
In reply to: [Woo Credits] Disabling certain gateway for the credits tier purchaseTried to look into the product ID option and I found that unsetting by product type was also possible. Looking at the plugin’s php seemed to suggest to me that the credits have their product type as ‘credits’. I then found this one filter example via Google. From which I mumbled up the following filter and it seems to work (used with the My Custom Functions plugin):
add_filter(‘woocommerce_available_payment_gateways’, ‘conditional_payment_gateways’, 10, 1);
function conditional_payment_gateways( $available_gateways ) {foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$prod_credtis = false;
// Get the WC_Product object
$product = wc_get_product($cart_item[‘product_id’]);
// Get the product types in cart (example)
if($product->is_type(‘credits’)) $prod_credits = true;
}
if($prod_credits)
unset($available_gateways[‘fortumo’]);return $available_gateways;
}A cleanup pointer would still be greatly appreciated. I really appreciate the plugin’s availability and should go premium/platinum soon indeed.
Thanks
- This reply was modified 6 years, 9 months ago by mkerv.
Forum: Plugins
In reply to: [Woo Credits] Disabling certain gateway for the credits tier purchaseWith standard Woocommerce products, I use the category ID (and I am not sure if this could also be possible with a product ID but I could look into that) which brings me to wonder if the credits pack/tiers are assigned IDs somehow or if it was never necessary. Yes I do not think they have/need categories (open for correction).
Forum: Plugins
In reply to: [Woo Credits] Disabling certain gateway for the credits tier purchaseThanks for the reply. I wish to have Fortumo hidden only when users are purchasing the credits tier(s) – because the price I have set for Fortumo is only good enough for one file and not more. If I understand right, I will need to add the suggested code to the Plugin’s css and not otherwise. Thanks again.
P.S A noobish interpretation of me it seems. The plugin does not seem to have a css file (of cause unless if it is just something above my head). Yes I normally Google my way through web dev’ing with no real skill therein. So I do not know (amonsgt others) how exactly a plugin works behind the scene but with a pointer (if possible), I trust I can get it done. And I will also understand if it is simply just not possible at the moment ??