Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)
  • Author
    Posts
  • in reply to: Tab was moved and fields are not associated now #49365
    DubiousMootDubiousMoot
    Participant

    I changed the width to 4 each to equal 12. without changing the json it does not fix the problem.
    I have the same issue on another attempt. I created a new post type and started over. Currently there's an issue where the 2 sections = 12
    2 + 10. if the 2 wide section is first up, they do not show. but if I swap and have the 12 first they will show.

    Were you able to see the issue? I'm worried I need to fix the json when these issues arise.

    Thank you

    in reply to: Tab was moved and fields are not associated now #49347
    DubiousMootDubiousMoot
    Participant

    FYI
    I created another new site, imported the custom fields. The open house info is not present when trying to add a listing.
    I then created 2 new tabs with content in them. The tabs are present when trying to add a new listings, but the content section in each new tab is bare.

    in reply to: Tab was moved and fields are not associated now #49343
    DubiousMootDubiousMoot
    Participant

    Hi Peter, here's the file.

    Thank you

    not sure how to share files, but here's a link
    JSON

    in reply to: Tab was moved and fields are not associated now #49339
    DubiousMootDubiousMoot
    Participant

    I gave up for a couple months and decided to try again. This is my 3rd unsuccessful time trying with tabs.
    I have a tab with 3 sections in it. The tab is 12 wide then there are 3 fields in the tab, each 3 wide. Leaving plenty of space.
    This tab is empty when trying to add a custom post type.
    I tried duplicating, moving the fields down to a new tab, nothing works.
    They are all perfect when in edit mode, as mentioned 9/12

    This is a major flaw that has not been fixed.
    I really want to use this app. Especially since I paid for it.

    I appreciate any extra help

    Thank you

    3 Fields each 3 wide

    in reply to: Tabs issue #48822
    DubiousMootDubiousMoot
    Participant

    Than you Peter. I have created a few Tabs. Added a couple items to the "Shoot Information" tab. They do not show up in Shoot Information. One is MIA and the second is in the tab above.
    01
    02
    03

    in reply to: Always select from 1 custom field group's entry #48705
    DubiousMootDubiousMoot
    Participant

    Okay, I'll give it a try. Thanks for your time!

    in reply to: Always select from 1 custom field group's entry #48695
    DubiousMootDubiousMoot
    Participant

    I have the Post type and Custom Fields set up.
    The information from these fields are to be used in the Navigation Top Bar area (small bar above the header).
    I will only use the 1 entry for the fields. No need for a loop, we will only change the info as needed from the 1 post.
    I have the Animated headline in the top bar which is included in the elementor header theme.

    Previously I didn't want to make a loop, simply select from the post type. I decided to make a loop then told my client to not delete the current post or add new posts. I think this will work.

    Thank you so much for your time.

    in reply to: Always select from 1 custom field group's entry #48671
    DubiousMootDubiousMoot
    Participant

    Please note the AI solution breaks elementor's Theme Builder. Cannot edit the header with this code.

    in reply to: Always select from 1 custom field group's entry #48670
    DubiousMootDubiousMoot
    Participant

    So AI seems to have fixed the issue (for now). This is a temporary solution unless someone more knowledgeable has a more refined solution.

    // Filter the dynamic tag values specifically
    add_filter('elementor/dynamic_tags/custom_field/value', function($value, $settings, $tag) {
        // Only modify if we're in a header template and the field matches our topbar fields
        if (strpos($settings['key'], 'topbar-') === 0) {
            $header_post = get_posts(array(
                'name' => '18318',
                'post_type' => 'top-bar-message',
                'numberposts' => 1,
                'post_status' => 'publish'
            ));
            
            if (!empty($header_post)) {
                $value = get_post_meta($header_post[0]->ID, $settings['key'], true);
            }
        }
        
        return $value;
    }, 10, 3);
    in reply to: Maps (OSM) are on zoom 1 when adding an post #48483
    DubiousMootDubiousMoot
    Participant

    Hello, I am having the same issue. How do we add the zoom level for the admin post?

    in reply to: Image Select not showing from a Dynamic selection #27940
    DubiousMootDubiousMoot
    Participant

    Okay, I'll set it up another way.

    Thanks for your time

    in reply to: Image Select not showing from a Dynamic selection #27915
    DubiousMootDubiousMoot
    Participant

    Hello Long, thanks for that info. I think this error info may help...

    Warning: Invalid argument supplied for foreach() in /home/zentyx/public_html/realestate400/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-elementor-integrator/src/Traits/Fields/Image.php on line 31

    Here is the set up with a simple image grab directly from the library
    With a direct selection from the Library

    And here is the set up with the metabox image select
    with the error

    Thank you so much for your time

    in reply to: Image Select not showing from a Dynamic selection #27853
    DubiousMootDubiousMoot
    Participant

    I changed my url to Mysite.ca in the code block here. It's correct on the site

    in reply to: Image Select not showing from a Dynamic selection #27851
    DubiousMootDubiousMoot
    Participant
    [
                    'name'       => __( 'Sales Person', 'your-text-domain' ),
                    'id'         => $prefix . 'sales_person',
                    'type'       => 'image_select',
                    'options'    => [
                        'image01' => __( 'http://zentyx.ca/realestate400/wp-content/uploads/2021/04/female-1.png', 'your-text-domain' ),
                        'image02' => __( 'http://zentyx.ca/realestate400/wp-content/uploads/2021/04/female02.png', 'your-text-domain' ),
                    ],
                    'save_field' => 1,
                ]
    in reply to: Image Select Showing 1 image (not multiple) #27401
    DubiousMootDubiousMoot
    Participant

    Thank you.

Viewing 15 posts - 1 through 15 (of 17 total)