Month: February 2025

Page Updates and QA

User I'll send other two pages karrier and blog update tomororrow with QA Correct above sentence Assistant I'll send the other two pages, **Karrier** and **Blog**, for updates tomorrow along with the QA.

Custom Post Type and Taxonomy

User function avada_owlimage_post_type() { $args = array( 'label' => __('Owl Slider Images', 'avada'), 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'supports' => array('title', 'thumbnail'), // Only title & featured image 'menu_icon' => 'dashicons-format-image', ); register_post_type('owl_slider_image', $args); } add_action('init', 'avada_owlimage_post_type'); also add taxonmy image category Assistant Here's how you can add […]

Invalid Taxonomy Fix

User function avada_owlimage_post_type() { $args = array( 'label' => __('Owl Slider Images', 'avada'), 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'supports' => array('title', 'thumbnail'), // Only title & featured image 'menu_icon' => 'dashicons-format-image', ); register_post_type('owl_slider_image', $args); } add_action('init', 'avada_owlimage_post_type',80); function avada_register_image_category_taxonomy() { $args = array( 'label' => __('Image Categories', 'avada'), […]

Invalid Taxonomy Fix Steps

User $categories = get_terms(array( 'taxonomy' => 'owlimgcat', 'hide_empty' => false, )); invalid taxonomy return function avada_owlimage_post_type() { $args = array( 'label' => __('Owl Slider Images', 'avada'), 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'supports' => array('title', 'thumbnail'), // Only title & featured image 'menu_icon' => 'dashicons-format-image', ); register_post_type('owl_slider_image', $args); } […]

Ungültige Taxonomie Fehlerbehebung

User WP_Error Object ( [errors] => Array ( [invalid_taxonomy] => Array ( [0] => Ungültige Taxonomie. ) ) [error_data] => Array ( ) [additional_data:protected] => Array ( ) ) Assistant The `WP_Error` object you are seeing indicates that there is an issue with a taxonomy in your WordPress setup. The specific error message is "Ungültige […]

Owl Carousel Duplicate Slides

User jQuery(document).ready(function($) { var owl2 = jQuery(".owl-carousel-custom"); owl2.owlCarousel({ items: 3.5, margin: 16, autoplay: true, autoplayTimeout: 3000, autoplayHoverPause: true, loop: true, nav: false, // Enable navigation arrows dots: false, // Disable dots responsive: { 0: { items: 1.1, margin: 8 }, 768: { items: 1.1, margin: 8 }, 1024: { items: 3.5 } } }); }); […]

Custom Post Type Creation

User create custom post type to upload feature image only with title thats it Assistant To create a custom post type in WordPress that allows only a title and a featured image, you can add the following code to your theme's `functions.php` file or in a custom plugin: ### Steps: 1. **Register the custom post […]

jQuery Click Event Examples

User jquery click event Assistant In jQuery, the `.click()` event is used to execute a function when an element is clicked. You can bind a click event in multiple ways: ### 1. **Basic Click Event** $(document).ready(function(){ $("#myButton").click(function(){ alert("Button clicked!"); }); }); 📌 **Explanation:** When `#myButton` is clicked, an alert box will appear. — ### 2. […]

Fusion Carousel Mobile Issue

User fusion-image-carousel fusion-image-carousel-auto fusion-carousel-border not working in mobile Assistant If your **Fusion Image Carousel** (from Avada) is not working on mobile, here are a few things to check and troubleshoot: ### 1. **Check Avada's Mobile Settings** – Go to **Avada > Options > Fusion Builder Elements > Image Carousel**. – Ensure **Disable Carousel on Mobile** […]

Automate New Customer Check

User At the moment, we manually search a customers billing/shipping name and postcode (if different) across the whole orders database for every order we receive. This allows us to check their order history so we can action the order accordingly. As you can imagine, this is very time-consuming and adds burden on the system and […]