Webbureau.dk
Forum Replies Created
-
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Make the ad featuredWonderful, Greg ??
I am looking forward to start using it, when it becomes available.
I am quite sure that many of us will use it, and the customers too.
Hi Beda,
An Event listing reference site, where people can publish different events. The events will be shown in many ways on the site, also in a calender. People can list for free, and later if needed buy “Featured” (moves to the top on lists and highlighted). All events have x days before expire. People can pay to extend the number of days.
A showcase of websites and webshops (two different setups/forms). All sites/shops are placed in categories, subcategories, and maybe also subsubcategories – the urls of the listings will use them. E.g https://domain.com/category/subcategory/subsubcategory/website-name/. People can list for free or buy better listings.
Thanks ??
Forum: Plugins
In reply to: [LiteSpeed Cache] media_img_webp = falseThanks – I found it ??
Very small menu…haha ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Latest adsHi Greg,
Sounds good. However it would also be very nice to show normal ads only.
And all of it both as lists and widgets.Regarding listing/showing ads, then I think the following would be nice:
– Show latest ads (choose all, only features, only normal, grid, list – and how many)
– Show specific ads (choose ID’s or user/author, sort by date, price, alphabet, asc/desc – and how many)Thanks ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Latest adsHi Greg,
Could you consider making it possible to also show latest ads without the featured ads on the list?
Or maybe also a list with featured ads only.
Thanks ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Grid view with “full size” imageOr maybe have the main image to be resized without loosing important parts of the images in both sides? Still regarding grid view…
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Latest adsI would like to have the same, both vertical and horizontal, but not that many ads.
I posted this earlier on: https://www.ads-software.com/support/topic/is-it-possible-to-show-the-just-one-specific-ad/
I would love to show 1-4 ads on the frontpage, either specific or latest.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] New user not transferred to WoocommerceHi Greg,
It worked ??
However, I wished it had been part of the add-on Woocommerce from the start.How do we transfer also the name, email, and phone to woocommerce from the page “add”?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Expired ads marked with “Expired”It works – thanks ??
Is it possible to make it a <h2>…</h2>.
I tried to insert it before/after … but it didn’t work.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Disable delete buttonThanks Greg ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Translate “The image could not be loaded”Click on this test-ad: https://onlinekursus.dk/onlinekursustilbud/test-af-mobil-upload/ and try to view the two images in full scale.
Thanks for pointing it out regarding file formats.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] setting order for pricingIt works – thanks ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] setting order for pricingI just checked the error log…
[11-Dec-2017 09:46:32 UTC] PHP Fatal error: Cannot redeclare my_adverts_form_load() (previously declared in wp-content/themes/enfold-child/functions.php:186) in /wp-content/themes/enfold-child/functions.php on line 221.
The declare on line 186 is for sorting prices for the new ads.
Thanks ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Translate “Drop files here to add them.”Thanks – It worked ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] setting order for pricingHi Greg,
Yes, I am using it with WooCommerce.
I tried with this, but only got a white screen….!
add_filter( “adverts_form_load”, “my_adverts_form_load”, 2000 );
function my_adverts_form_load( $form ) {
if( $form[“name”] != “advert-renew” ) {
return $form;
}
$opts = array(
array( “value” => 385, “text” => “” ),
array( “value” => 854, “text” => “” ),
array( “value” => 389, “text” => “” ),
array( “value” => 392, “text” => “” )
);
foreach( $form[“field”] as $key => $field ) {
if( $field[“name”] == “payments_listing_type” ) {
$form[“field”][$key][“options”] = $opts;
}
}
return $form;
}