Forum Replies Created
-
AuthorPosts
-
DubiousMoot
ParticipantI 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
DubiousMoot
ParticipantFYI
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.DubiousMoot
ParticipantDubiousMoot
ParticipantI 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/12This 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

DubiousMoot
ParticipantThan 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.



DubiousMoot
ParticipantOkay, I'll give it a try. Thanks for your time!
DubiousMoot
ParticipantI 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.
DubiousMoot
ParticipantPlease note the AI solution breaks elementor's Theme Builder. Cannot edit the header with this code.
DubiousMoot
ParticipantSo 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);DubiousMoot
ParticipantHello, I am having the same issue. How do we add the zoom level for the admin post?
DubiousMoot
ParticipantOkay, I'll set it up another way.
Thanks for your time
DubiousMoot
ParticipantHello 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

And here is the set up with the metabox image select

Thank you so much for your time
DubiousMoot
ParticipantI changed my url to Mysite.ca in the code block here. It's correct on the site
DubiousMoot
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, ]DubiousMoot
ParticipantThank you.
-
AuthorPosts