warcher88
Forum Replies Created
-
ok thanks fot the info, we will have to find a work around.
Hi Daniel, so there is no way to make the popup apear on every visit? It can only be on a timer like every 5 minutes or something?
thanks for the quick response! yes i had site-wide cookie option checked, i have tried unchecking it but the problem persists. I cant see how to add private info or attach an image, what part do you need to see?
Forum: Plugins
In reply to: [Custom Post Type UI] Not compatible with PHP V8Hey, Sorry i just realised what it was. Its a problem with Enfold. Specifically with the way it displays posts in grid mode. I can display posts in list mode without an option. I will have to contact them instead.
thanksanyway for your time
Forum: Plugins
In reply to: [Custom Post Type UI] Not compatible with PHP V8i should mention it is a live site, but i keep it on PHP v 7.4 to keep the content showing, so you cant really see the problem first hand
Forum: Plugins
In reply to: [Custom Post Type UI] Not compatible with PHP V8Hey, thanks for your reply.
Thats a good point, i tried using a different theme and it worked, but only because the the theme shortcode i used to show the custom posts was not a part of theose themes. I then switched back to enfold but removed the shortcode and it works. Meaning there is something wrong with the method used to display the custom posts types on the Enfold theme.
Do you know a different and more robust way to show the custom post types based on a particular taxonomy?Forum: Plugins
In reply to: [WooCommerce] unable to chose default country and stateperfect that worked. All the code i found didn’t work but this did the trick
thanks for our help
Forum: Plugins
In reply to: [Post My CF7 Form] json error when mapping form fields to post meta-fieldsAnother thing, i went into PHPmyAdmin and looked at the wp_terms table. I found a few duplicates in there which i deleted. I thought i was on the right track but it still doesn’t work
Forum: Plugins
In reply to: [Post My CF7 Form] json error when mapping form fields to post meta-fieldsHey,
I copied the code into a new form and It looks like it works when i try to link it to the standard WordPress post, however the error persists when i try to link it to my custom post type ‘Advertisements’.
It also works if i link to the other custom post type that i have, just not the one i need. Is there a way to ‘refresh’ the json on a custom post type?
I used the CPT UI plugin to make the custom post type and it has worked perfectly. This is the only problem i have had with it
Forum: Plugins
In reply to: [Post My CF7 Form] json error when mapping form fields to post meta-fieldsah right, this is what i have in Contact Form 7
<div class=”splitCol”>
<div class=”halfCol”>
<label> Your name
[text* your-name] </label></div>
<div class=”halfCol”>
<label> Your email
[email* your-email] </label></div>
</div><div class=”splitCol”>
<div class=”halfCol”>
<label> Advertisement Title
[text* your-title] </label>
</div>
<div class=”halfCol”>
<label> Phone
[tel* phone]</label>
</div>
</div>
<div class=”fullCol”>
<label> Blade Category
[select* category multiple] </label>
</div>
<div class=”fullCol”>
<label> Blade Materials
[select materials multiple] </label>
</div>
<div class=”fullCol”>
[checkbox add-material-box use_label_element “Add Material”]
[group add-material]
<label> Add Material
[text add-material]</label>
[/group]</div>
<div class=”fullCol”>
<label> Blade Brand
[select brand ]</label></div>
<div class=”fullCol”>
[checkbox add-brand-box use_label_element “Add New Brand”]
[group add-brand]
<label> Add Brand
[text add-brand ]</label>
[/group]</div><div class=”splitCol”>
<div class=”halfCol”>
<label> Blade Condition
[select* Condition ]</label></div>
<div class=”halfCol”>
<label> Blade Type
[select* blade-type]</label></div>
</div>
<div class=”fullCol”>
<label> Blade Description
[textarea* your-message] </label></div>
<div class=”fullCol”>
<label> Blade Price
[text* price] </label></div>
<div class=”fullCol”>
<label> Blade Photo
[file* blade-photo limit:999999] </label></div><div><p style=”width: 5%; display: inline-block; float: left;”> [checkbox* show use_label_element]</p>
<p style=”width: 93%; display: inline-block; float: left; padding-left: 10px;”> I warrant that I am over 18 years of age and that I understand the rules regarding using bladetrader.com.au and agree with the terms and conditions.</p></div><div style=”width: 49%; max-width: 100px; display: inline-block; float: left;”>[submit “Submit”] </div>
<div style=”width: 49%; max-width: 200px; display: inline-block; float: left;”> [select menu-222 “Pay with PayPal|paypal” ]</div><p style=”display: inline-block; font-weight: bold; color: #b52926″> $20</p>`Forum: Plugins
In reply to: [Search & Filter] Split the multiselect box into columnsno unfortunately
ok i thought the default option would work. I will need to make an extra gmail account to have another go. I will get back to you.
Forum: Plugins
In reply to: [Custom Post Type UI] taxonomies wont display on some pagesHello, for anyone else interested. I ended up fixing it with this:
if ( $terms && ! is_wp_error( $terms ) ) {
$brands = array();
foreach ( $terms as $term ) {
$brands[] = $term->name;
}$brands_list = join( “, “, $brands );
$output .= ‘
<div class=”slide-entry-terms” class=”av-post-brands”>’;
$output .= sprintf(‘Brands: <span>%s</span>’, esc_html( $brands_list ));
$output .= ‘</div>
‘;
}Forum: Plugins
In reply to: [Product Reviews Import Export for WooCommerce] reviews not parsedThat worked! ok i guess Excel is just not built for using this format.
Many thanks for getting this sorted so quickly.
Forum: Plugins
In reply to: [Custom Post Type UI] taxonomies wont display on some pagesIt didn’t work, but i think i might have found part of the problem. The code i used is:
$output .= ! empty( $excerpt ) ? “<div class=’slide-entry-excerpt entry-content’ {$markup}>
<p><?php the_terms( $post->ID, ‘brands’, ‘Brand: ‘, ‘, ‘, ‘ ‘ ); ?></p>
{$excerpt}</div>” : ”;but when i inspect element on the website it shows like HTML with a comment:
<p>
<!–?php the_terms( , ‘brands’, ‘Brand: ‘, ‘, ‘, ‘ ‘ ); ?–>
</p>So it seems like its not reading it as PHP?