jazzu
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Replacing all Add to cart buttons with View detailsHi!
Sorry for not replying, I forgot. I tried the plugin, but it wasn’t what I was looking for.
So I basically just disabled the buttons all together for “View product” and “Add to cart” with CSS.
Thank you for your help.
Forum: Fixing WordPress
In reply to: Need help with editing some code with functions.phpHi, @t-p !
Thank you for your answer. I made a few threads about this on WooCommerce’s forum, sadly however, they are not allowed to answer any code-related questions.
Kind regards
Forum: Plugins
In reply to: [WooCommerce] Getting rid of “Save payment information” borderHi @daniyalahmedk !
I’m so sorry, I overlooked this email.. I added the code you wrote and it works great, thank you very much!
Kind regards
Forum: Plugins
In reply to: [WooCommerce] Shortcode for archive titleForum: Fixing WordPress
In reply to: Editing optional fee that I already addedHi @t-p !
Thank you for your reply.
I’m not using a plugin or a theme feature. I added this code to functions.php. Sorry for not pasting it with the original thread.
// Display the custom checkbow field in checkout add_action( 'woocommerce_review_order_before_order_total', 'fee_installment_checkbox_field', 20 ); function fee_installment_checkbox_field(){ echo '<tr class="packing-select"><th>'; woocommerce_form_field( 'installment_fee', array( 'type' => 'checkbox', 'class' => array('installment-fee form-row-wide'), 'label' => __('Monta?a v 14 dneh'), 'placeholder' => __(''), ), WC()->session->get('installment_fee') ? '1' : '' ); echo '</th><td>'; } // jQuery - Ajax script add_action( 'wp_footer', 'checkout_fee_script' ); function checkout_fee_script() { // Only on Checkout if( is_checkout() && ! is_wc_endpoint_url() ) : if( WC()->session->__isset('installment_fee') ) WC()->session->__unset('installment_fee') ?> <script type="text/javascript"> jQuery( function($){ if (typeof wc_checkout_params === 'undefined') return false; $('form.checkout').on('change', 'input[name=installment_fee]', function(){ var fee = $(this).prop('checked') === true ? '1' : ''; $.ajax({ type: 'POST', url: wc_checkout_params.ajax_url, data: { 'action': 'installment_fee', 'installment_fee': fee, }, success: function (result) { $('body').trigger('update_checkout'); }, }); }); }); </script> <?php endif; } // Get Ajax request and saving to WC session add_action( 'wp_ajax_installment_fee', 'get_installment_fee' ); add_action( 'wp_ajax_nopriv_installment_fee', 'get_installment_fee' ); function get_installment_fee() { if ( isset($_POST['installment_fee']) ) { WC()->session->set('installment_fee', ($_POST['installment_fee'] ? true : false) ); } die(); } // Add a custom calculated fee conditionally add_action( 'woocommerce_cart_calculate_fees', 'set_installment_fee' ); function set_installment_fee( $cart ){ if ( is_admin() && ! defined('DOING_AJAX') || ! is_checkout() ) return; if ( did_action('woocommerce_cart_calculate_fees') >= 2 ) return; if ( 1 == WC()->session->get('installment_fee') ) { $items_count = WC()->cart->get_cart_contents_count(); $fee_label = sprintf( __( "Monta?a" ), '×', $items_count ); $fee_amount = 170 * $items_count; WC()->cart->add_fee( $fee_label, $fee_amount ); } } add_filter( 'woocommerce_form_field' , 'remove_optional_txt_from_installment_checkbox', 10, 4 ); function remove_optional_txt_from_installment_checkbox( $field, $key, $args, $value ) { // Only on checkout page for Order notes field if( 'installment_fee' === $key && is_checkout() ) { $optional = ' <span class="optional">(' . esc_html__( 'optional', 'woocommerce' ) . ')</span>'; $field = str_replace( $optional, '', $field ); } return $field; }
Hope someone can help me out.
Kind regards
Hi!
I managed to fix it! For some reason, I had a piece of code in funtions.php that would automatically send you to the homepage after the order was placed.
Thank you for your reply!
Kind regards
Forum: Plugins
In reply to: [WooCommerce] WooCommerce pages won’t use the colors I used?Hi @oaoyadeyi !
Ofcourse, here you go:
### WordPress Environment ### WordPress address (URL): https://moja-savna.si Site address (URL): https://moja-savna.si WC Version: 5.9.0 REST API Version: ? 5.9.0 WC Blocks Version: ? 6.1.0 Action Scheduler Version: ? 3.3.0 WC Admin Version: ? 2.8.0 Log Directory Writable: ? WP Version: 5.8.2 WP Multisite: – WP Memory Limit: 256 MB WP Debug Mode: – WP Cron: ? Language: sl_SI External object cache: – ### Server Environment ### Server Info: LiteSpeed PHP Version: 7.4.26 PHP Post Max Size: 50 MB PHP Time Limit: 30 PHP Max Input Vars: 5000 cURL Version: 7.71.0 OpenSSL/1.1.1d SUHOSIN Installed: – MySQL Version: 5.5.5-10.3.31-MariaDB-log-cll-lve Max Upload Size: 20 MB Default Timezone is UTC: ? fsockopen/cURL: ? SoapClient: ? DOMDocument: ? GZip: ? Multibyte String: ? Remote Post: ? Remote Get: ? ### Database ### WC Database Version: 5.9.0 WC Database Prefix: YwAaXCZkY_ Skupna velikost podatkovne zbirke: 140.66MB Velikost podatkov podatkovne zbirke: 130.29MB Velikost kazala podatkovne zbirke: 10.37MB YwAaXCZkY_woocommerce_sessions: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_woocommerce_api_keys: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_woocommerce_attribute_taxonomies: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_woocommerce_downloadable_product_permissions: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_woocommerce_order_items: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_woocommerce_order_itemmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_woocommerce_tax_rates: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_woocommerce_tax_rate_locations: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_woocommerce_shipping_zones: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_woocommerce_shipping_zone_locations: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_woocommerce_shipping_zone_methods: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_woocommerce_payment_tokens: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_woocommerce_payment_tokenmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_woocommerce_log: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB wp_woocommerce_tax_rate_locations: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_actionscheduler_actions: Podatki: 5.02 MB + Kazalo: 2.14 MB + Pogon InnoDB YwAaXCZkY_actionscheduler_claims: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_actionscheduler_groups: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_actionscheduler_logs: Podatki: 2.25 MB + Kazalo: 1.86 MB + Pogon InnoDB YwAaXCZkY_addonlibrary_addons: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_addonlibrary_categories: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_aioseo_cache: Podatki: 0.11 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_aioseo_notifications: Podatki: 0.03 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_aioseo_posts: Podatki: 1.52 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_ce4wp_abandoned_checkout: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_ce4wp_contacts: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_commentmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_comments: Podatki: 0.02 MB + Kazalo: 0.09 MB + Pogon InnoDB YwAaXCZkY_dlm_order: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_dlm_order_customer: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_dlm_order_item: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_dlm_order_transaction: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_dlm_session: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_download_log: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_duplicator_packages: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_ewwwio_images: Podatki: 0.09 MB + Kazalo: 0.08 MB + Pogon InnoDB YwAaXCZkY_ewwwio_queue: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_frmt_form_entry: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_frmt_form_entry_meta: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_frmt_form_views: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_gla_budget_recommendations: Podatki: 0.22 MB + Kazalo: 0.14 MB + Pogon InnoDB YwAaXCZkY_gla_merchant_issues: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_gla_shipping_rates: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_gla_shipping_times: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_lead_form: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_lead_form_data: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_lead_form_extension: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_lead_form_options: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_links: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_litespeed_url: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_litespeed_url_file: Podatki: 0.02 MB + Kazalo: 0.08 MB + Pogon InnoDB YwAaXCZkY_mailchimp_carts: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mailchimp_jobs: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mailpoet_custom_fields: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_dynamic_segment_filters: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_feature_flags: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_forms: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mailpoet_log: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mailpoet_mapping_to_external_entities: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletters: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletter_links: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletter_option: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletter_option_fields: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletter_posts: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletter_segment: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_newsletter_templates: Podatki: 2.52 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mailpoet_scheduled_tasks: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_scheduled_task_subscribers: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_segments: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_sending_queues: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_settings: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_bounces: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_clicks: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_forms: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_newsletters: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_opens: Podatki: 0.02 MB + Kazalo: 0.08 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_unsubscribes: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_mailpoet_statistics_woocommerce_purchases: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_mailpoet_stats_notifications: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_subscribers: Podatki: 0.02 MB + Kazalo: 0.13 MB + Pogon InnoDB YwAaXCZkY_mailpoet_subscriber_custom_field: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_subscriber_ips: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_subscriber_segment: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_mailpoet_user_agents: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mailpoet_user_flags: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_mclean_refs: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_mclean_scan: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_nextend2_image_storage: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_nextend2_section_storage: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_nextend2_smartslider3_generators: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_nextend2_smartslider3_sliders: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_nextend2_smartslider3_sliders_xref: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_nextend2_smartslider3_slides: Podatki: 0.05 MB + Kazalo: 0.11 MB + Pogon InnoDB YwAaXCZkY_options: Podatki: 6.11 MB + Kazalo: 0.22 MB + Pogon InnoDB YwAaXCZkY_postmeta: Podatki: 69.42 MB + Kazalo: 1.92 MB + Pogon InnoDB YwAaXCZkY_posts: Podatki: 39.30 MB + Kazalo: 0.47 MB + Pogon InnoDB YwAaXCZkY_redirection_404: Podatki: 1.02 MB + Kazalo: 0.11 MB + Pogon InnoDB YwAaXCZkY_redirection_groups: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_redirection_items: Podatki: 0.02 MB + Kazalo: 0.09 MB + Pogon InnoDB YwAaXCZkY_redirection_logs: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_snippets: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_termmeta: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_terms: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_term_relationships: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_term_taxonomy: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_th_popup: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_upfs_files: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_usermeta: Podatki: 0.05 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_users: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_wc_admin_notes: Podatki: 0.06 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_wc_admin_note_actions: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_wc_category_lookup: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_wc_customer_lookup: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_wc_download_log: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_wc_order_coupon_lookup: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_wc_order_product_lookup: Podatki: 0.02 MB + Kazalo: 0.06 MB + Pogon InnoDB YwAaXCZkY_wc_order_stats: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_wc_order_tax_lookup: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_wc_product_meta_lookup: Podatki: 0.02 MB + Kazalo: 0.09 MB + Pogon InnoDB YwAaXCZkY_wc_reserved_stock: Podatki: 0.02 MB + Kazalo: 0.00 MB + Pogon InnoDB YwAaXCZkY_wc_tax_rate_classes: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_wc_webhooks: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_woof_query_cache: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yasr_log: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yasr_log_multi_set: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yasr_multi_set: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yasr_multi_set_fields: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yith_wcwl: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yith_wcwl_lists: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_yoast_indexable: Podatki: 0.13 MB + Kazalo: 0.08 MB + Pogon InnoDB YwAaXCZkY_yoast_indexable_hierarchy: Podatki: 0.02 MB + Kazalo: 0.05 MB + Pogon InnoDB YwAaXCZkY_yoast_migrations: Podatki: 0.02 MB + Kazalo: 0.02 MB + Pogon InnoDB YwAaXCZkY_yoast_primary_term: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB YwAaXCZkY_yoast_seo_links: Podatki: 0.02 MB + Kazalo: 0.03 MB + Pogon InnoDB ### Post Type Counts ### attachment: 206 cartflows_flow: 3 cartflows_step: 6 custom_css: 2 customize_changeset: 104 dlm_download_version: 1 elementor_library: 21 forminator_forms: 3 glossary: 1 gpsc_slider_carousel: 1 mailpoet_page: 1 nav_menu_item: 37 oembed_cache: 3 opal_service: 1 page: 14 post: 2 product: 41 product_variation: 48 project: 2 revision: 2130 shop_coupon: 2 shop_order: 11 sp_wps_shortcodes: 1 tooltips: 1 xlwcty_thankyou: 1 ### Security ### Secure connection (HTTPS): ? Hide errors from visitors: ? ### Active Plugins (70) ### Akismet Anti-Spam: od Automattic – 4.2.1 All in One SEO: od All in One SEO Team – 4.1.5.2 Back In Stock Notifier for WooCommerce | WooCommerce Waitlist Pro: od codewoogeek – 2.4.3 CartFlows: od CartFlows Inc – 1.7.1 Payment Gateway Based Fees and Discounts for WooCommerce: od Tyche Softwares – 2.6.4 Child Theme Configurator: od Lilaea Media – 2.5.8 Content Control: od Code Atlantic – 1.1.9 Creative Mail by Constant Contact: od Constant Contact – 1.4.7 Customize My Account for WooCommerce: od SysBasics – 1.1.3 Disable woocommerce logout confirmation: od Hem Thapa – 1.2 Download Plugin: od metagauss – 2.0.2 Duplicator: od Snap Creek – 1.4.3 Easy Custom Sidebars: od Titanium Themes – 2.0.1 Elementor: od Elementor.com – 3.4.8 Enhanced AJAX Add to Cart for WooCommerce: od TheRiteSites – 2.3.0 Essential Addons for Elementor: od WPDeveloper – 4.9.6 EWWW Image Optimizer: od Exactly WWW – 6.3.0 Forminator: od WPMU DEV – 1.15.7 Google Analytics for WordPress by MonsterInsights: od MonsterInsights – 8.2.0 Google Listings and Ads: od WooCommerce – 1.8.0 Health Check & Troubleshooting: od The www.ads-software.com community – 1.4.5 Homepage Control: od WooThemes – 2.0.3 Image Hover Effects - Elementor Addon: od Blocksera – 1.3.5 Jellyfish Backdrop: od Robert Miller – 0.7.0 Jetpack: od Automattic – 10.3 JetWidgets for Elementor and WooCommerce: od Crocoblock – 1.1.3 Kadence Blocks – Gutenberg Blocks for Page Builder Features: od Kadence WP – 2.1.15 Limit Login Attempts Reloaded: od Limit Login Attempts Reloaded – 2.23.2 LiteSpeed Cache: od LiteSpeed Technologies – 4.4.4 Loco Translate: od Tim Whitlock – 2.5.5 Mailchimp for WooCommerce: od Mailchimp – 2.5.4 MailPoet 3 (New): od MailPoet – 3.74.2 Max Mega Menu: od megamenu.com – 2.9.5 Menu Icons: od ThemeIsle – 0.12.9 Opal Service: od WPOPAL – 1.8.9 Page scroll to id: od malihu – 1.7.4 PowerPack Lite for Elementor: od IdeaBox Creations – 2.6.1 Really Simple SSL: od Really Simple Plugins – 5.2.0 Redirection: od John Godley – 5.1.3 Reveal IDs: od Oliver Schl?be – 1.5.4 ShopEngine: od Wpmet – 1.6.0 Simple Full Screen Background Image: od AMP-MODE – 1.2.10 SMNTCS Custom Logo Link: od Niels Lange – 1.15 SiteOrigin Widgets Bundle: od SiteOrigin – 1.26.0 SQL Executioner: od Justin Watt – 1.4 Category Order and Taxonomy Terms Order: od Nsp-Code – 1.5.7.7 Templately: od Templately – 1.3.1 Temporary Login Without Password: od StoreApps – 1.7.1 TH Advance Product Search: od ThemeHunk – 1.0.9 ThemeHunk Customizer: od ThemeHunk – 2.5.8 Ultimate Blocks: od Ultimate Blocks – 2.4.10 User Menus: od Code Atlantic – 1.2.7 WooReer: od Sofyan Sitorus – 2.1.13 What The File: od Never5 – 1.5.4 Extra Product Options (Product Addons) for WooCommerce: od ThemeHigh – 3.0.8 Payment Plugins Braintree For WooCommerce: od Payment Plugins [email protected] – 3.2.30 WooCommerce - Country Based Payments: od Ivan Paulin – 1.4 WooCommerce Stripe Gateway: od WooCommerce – 5.8.1 Booster for WooCommerce: od Pluggabl LLC – 5.4.9 WooCommerce Menu Cart: od Jeremiah Prummer Ewout Fernhout – 2.10.1 WooCommerce PayPal Payments: od WooCommerce – 1.6.2 WOOF - WooCommerce Products Filter: od realmag777 – 1.2.6.1 WooCommerce Shipping & Tax: od WooCommerce – 1.25.20 WooCommerce: od Automattic – 5.9.0 WooLentor - WooCommerce Elementor Addons + Builder: od HasThemes – 2.1.0 WP Header Images: od Fahad Mahmood – 2.0.3 WPC Variations Radio Buttons for WooCommerce: od WPClever – 2.5.6 Yet Another Stars Rating: od Dario Curvino – 2.9.5 YITH Color and Label Variations for WooCommerce: od YITH – 1.13.0 YITH WooCommerce Frequently Bought Together: od YITH – 1.7.0 ### Inactive Plugins (2) ### NextMove Lite - Thank You Page for WooCommerce: od XLPlugins – 2.15.0 Rearrange Woocommerce Products: od Aslam Doctor – 3.0.4 ### Dropin Plugins (1) ### maintenance.php: maintenance.php ### Must Use Plugins (1) ### Health Check Troubleshooting Mode: od – 1.7.2 ### Settings ### API Enabled: – Force SSL: – Currency: EUR (€) Currency Position: right_space Thousand Separator: . Decimal Separator: , Number of Decimals: 2 Taxonomies: Product Types: simple (simple) grouped (grouped) variable (variable) external (external) Taxonomies: Product Visibility: exclude-from-search (exclude-from-search) exclude-from-catalog (exclude-from-catalog) featured (featured) outofstock (outofstock) rated-1 (rated-1) rated-2 (rated-2) rated-3 (rated-3) rated-4 (rated-4) rated-5 (rated-5) Connected to WooCommerce.com: – ### WC Pages ### Osnova trgovine: #5 - /trgovina/ Ko?arica: #6 - /kosarica/ Zaklju?ek nakupa: #7 - /zakljucek-nakupa/ Moj ra?un: #8 - /moj-racun/ Pogoji poslovanja: ? Stran ni nastavljena ### Theme ### Name: Big Store Child Version: 1.7.0.1633437188 Author URL: https://www.themehunk.com Child Theme: ? Parent Theme Name: Big Store Parent Theme Version: 1.7.8 Parent Theme Author URL: https://www.themehunk.com WooCommerce Support: ? ### Templates ### Archive Template: Va?a tema vsebuje datoteko woocommerce.php. Glede na to da ima woocommerce.php prednost nad archive-product.php slednje ne boste mogli prepisati preko woocommerce/archive-product.php. To slu?i prepre?itvi te?av s prikazom. Overrides: – ### WooCommerce PayPal Payments ### Onboarded: Yes Shop country code: SI PayPal card processing available in country: No Pay Later messaging available in country: No Vault enabled: Yes ### Action Scheduler ### Zaklju?i: 6.722 Oldest: 2021-11-02 15:05:50 +0100 Newest: 2021-12-01 08:19:25 +0100 V obdelavi: 6 Oldest: 2021-12-01 08:23:38 +0100 Newest: 2021-12-02 00:19:30 +0100 ### Status report information ### Generated at: 2021-12-01 08:19:49 +01:00
Some of the stuff is in Slovenian though, so if you need anything just tell me.
Kind regards
- This reply was modified 2 years, 12 months ago by jazzu.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce pages won’t use the colors I used?Hi!
Quick follow up:
I added some CSS to change it, but I’m wondering, am I missing an option that changes the header section color in the store page, or why didn’t it use the same global colors?
The code I added:
.top-header:before, .main-header:before, .below-header:before { background: #6eabe1 !important; }
Kind regards
Forum: Plugins
In reply to: [WooCommerce] Centering products in Shop tabHi @rainfallnixfig !
Great! that code fixed the issue. I appreciate you taking the time to help me out.
Thank you very much!
Cheers
Forum: Plugins
In reply to: [WooCommerce] Want to create a thank you page but I’m redirected to home pageHi everyone!
I’m laughing pretty badly right now. At some point in time, I actually added this code to functions.php for whatever reason, which was the reason for redirecting me.
The code was:
add_action( 'woocommerce_thankyou', 'bbloomer_redirectcustom'); function bbloomer_redirectcustom( $order_id ){ $order = wc_get_order( $order_id ); $url = 'https://moja-savna.si/'; if ( ! $order->has_status( 'failed' ) ) { wp_safe_redirect( $url ); exit; } }
I removed the code and it works normally now.
Sorry for wasting your time, but thank you for assistance nonetheless!
Forum: Plugins
In reply to: [WooCommerce] Want to create a thank you page but I’m redirected to home pageHi @lorro !
Thank you for your reply! I am still using [woocommerce-checkout] shortcode, just on a custom made page. You can see it here.
I went into WooCommerce checkout endpoints, and I’m using the correct checkpoint. I’m using the endpoint “hvala”. Howerver, the problem still persists. Even if you try to access the thank you page directly, without going to the checkout page, it still just redirects to homepage.
Here’s the URL of the thank you page: https://moja-savna.si/hvala/
Thank you for your time!
Forum: Plugins
In reply to: [WooCommerce] Centering products in Shop tabHi @rainfallnixfig !
Thank you for your reply! I actually managed to fix the categories yesterday, so it’s showing them normally again.
On that video you uploaded you can see the products and subcategories being positioned from left to right, which is the reason I originally made this thread.
Kind regards
Forum: Plugins
In reply to: [WooCommerce] Centering products in Shop tabHi @maykato !
Thank you for your reply. I’m actually facing a different issue right now – categories aren’t working and instead of showing me products that are inside, they are just showing the main shop page.
Working on that right now.
Kind regards
Hi @htplugins !
Thank you for your reply!
I already fixed the problem and the problem was actually in Style tab, because I added negative padding / margin and that’s why it was so high up.Thank you!
Forum: Plugins
In reply to: [WooCommerce] Showing ALL products below CategoriesHi, @oaoyadeyi !
I actually made a custom shop page using Elementor, and made it just the way I wanted it.
Thank you both for your assistance!
Kind regards