captaincrispycrunch
Forum Replies Created
-
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Sitemap error@gaiett @rainbowgeek I’ve noticed a similar problem. After updating WP to the newest version, it disappeared ??
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Thumbnails@gutenbergslider Just checking in if the thumbnail feature has been released. Any news?
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Thumbnails@gutenbergslider Any news about the Thumbnail feature? I’m also interested ??
Forum: Plugins
In reply to: [Custom Fonts - Host Your Fonts Locally] Different font weights@karlemilnikka @brainstormteam
ETA +1Hi @farazfrank, thanks for looking into it.
It had to take down the second “example” slider (with only 2 images), because the project went live this week.
But the problem still exists with only 2 slides/images.
Looking forward to hearing from you.Forum: Themes and Templates
In reply to: [Astra] Last update turned buttons outline blackCustomizer > Globals > Buttons
Color:
Normal:
Text Color: #ffffff
BG Color: rgba(234,234,234,0) = transparentHover:
Text Color: #a80529
BG Color: #fffBorder:
Width: 1px 1px 1px 1px
Color: #ffffff
Hover Color: #ffffff
Border Radius: 0Padding: 20px 40px 20px 40px
—-
Page edit > Gutenberg Editor
Add Block > Design > Button
Styles: Outline
Text Color: none
BG Color: none—-
<div class="wp-block-buttons"> <div class="wp-block-button is-style-outline"> <a class="wp-block-button__link">Learn more...</a> </div> </div>
../wp-includes/css/dist/block-library/style.min.css:1
.wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button__link.is-style-outline {
color: #32373c;
background-color: transparent;
border: 2px solid;
}../wp-content/themes/child_theme_name/style.css:117
.wp-block-button .wp-block-button__link {
padding-top: 20px;
padding-right: 40px;
padding-bottom: 20px;
padding-left: 40px;
}../index:18
.wp-block-button .wp-block-button__link {
border-style: solid;
border-top-width: 1px;
border-right-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-color: #ffffff;
color: #ffffff;
font-family: inherit;
font-weight: inherit;
line-height: 1;
font-size: 18px;
font-size: 1.125rem;
border-radius: 0;
padding-top: 20px;
padding-right: 40px;
padding-bottom: 20px;
padding-left: 40px;
}Forum: Themes and Templates
In reply to: [Astra] Last update turned buttons outline blackSame here. New Block Library CSS overrides custom Astra settings:
../wp-includes/css/dist/block-library/style.min.css
.wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button__link.is-style-outline { color: #32373c; background-color: transparent; border: 2px solid; }
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Disable checkbox & account creationThank you Greg for the suggestion. I tried it with “adverts_create_user_from_post_id” commented out and it’s pretty close to what we intended.
But now the user can’t see and manage his adds under “My account > Manage Ads”.
(I guess it’s because the add is created without an author?)Our plan was to have the following order of events for new users:
New Website Visitor clicks on “create add” >
Fills out “Create Add” Form and clicks Preview >
Preview is okay and clicks publish >
Fills out Check Out Form and clicks Purchase >
Success >
Add is published >
Account gets created from eMail & Data from Checkout >
Receive eMail with password from WooC. >
Receive eMail with Invoice from WooC.Maybe I’m missing something. Do you think this process can be realized?
How about using “adverts_create_user_from_post_id” but then in between the steps “preview okay, clicks publish” and “Checkout form” logging the user in automatically?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Disable checkbox & account creationGood morning Greg,
as described before, thanks to custom fields the _adverts_account field is sitting in the trash, as it can’t be fully deleted: Screenshots
To be 100% sure I tripple checked in 3 different browser (Private/Incognito tab, empty cache, no plugins/addons) with random email addresses freshly generated.
Still getting the “Account data” & “Set you password” mail after the first step and the “An account is already registered with your email address” notification in the checkout step in every browser.
Edit#1: User creation happens after the 2nd step (Preview), User Role is “Subscriber”. I may have another guess…let’s check.
Edit#2: No, it wasn’t the custom templates nor the contact form addon. The user and the add are getting created after the preview-step. The add is marked as “Cart Abondend” and the user receives the form fields/details from “Contact Person” and the “Subscriber” role.
So it’s more a problem of the contact person being the same person creating the add. I guess there is now way around this?
- This reply was modified 4 years, 8 months ago by captaincrispycrunch.
- This reply was modified 4 years, 8 months ago by captaincrispycrunch.
- This reply was modified 4 years, 8 months ago by captaincrispycrunch. Reason: formatting
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] 0,00€ converts to “Empty Field Text” ?Thanks, I was able to make it work.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] 0,00€ converts to “Empty Field Text” ?Hi Greg,
thanks for your suggestion, it inspired me to take another approach.
I created an additional category called “Free Give Away” which hides the pricing field in the add-form when selected.But the second part gave me a hard time, couldn’t figure out how to filter for the category/taxo ID (568). So I took a part of code from the single.php, to use it as div class, to change the “empty field text” into “give away” with a jQuery match.
Not my proudest moment but it works.
Maybe you could give me a bump into the right direction ??<?php $advert_category = get_the_terms($post_id, 'advert_category') ?> <?php if (!empty($advert_category)): ?> <?php foreach ($advert_category as $c): ?> <div class="<?php echo join(" / ", advert_category_path($c)) ?>"> <?php $price = get_post_meta(get_the_ID() , "adverts_price", true) ?> <?php if ($price): ?> <div class="advert-price"><?php echo esc_html(adverts_get_the_price(get_the_ID() , $price)) ?></div> <?php elseif (adverts_config('empty_price')): ?> <div class="advert-price adverts-price-empty"> <?php echo esc_html(adverts_empty_price(get_the_ID())) ?></div> <?php endif; ?> </div> <?php endforeach; ?> <?php endif; ?>
- This reply was modified 4 years, 8 months ago by captaincrispycrunch.
Hi Greg,
I’m really sorry, I didn’t know that asking questions regarding premium extensions is against the forum rules.
I just wanted to let you know, that I found a way around my problem:
Setting the product price for the free ad to 0,00001Thanks for the assistance.
Hi Greg, thanks for considering this feature in the roadmap.
It would really help with strict german tax regulations.Anyways, I’ll have to change the source code until the next update.
Could you point me into the direction where to find the “If the price is equal to 0” function ?@sharebigbear Greg, the WPAdvert developer came through, check it here:
https://www.ads-software.com/support/topic/hello-elementor-theme-missing-categories-and-location-pag/Hi Greg, the header and footer were missing on purpose, I tried to figure out the ad listings first.
Anyway, thank you so much for the files. I would have never figured out the filter exclude for the mal_template. Can you explain what is going there?