• Resolved Boffy

    (@boffy)


    Hey Greg,

    I’m moving my site to a new host and unfortunately can’t duplicate setup since it’s a new theme/multisite setup.

    1. Weird spacing between post title and image which doesn’t appear on other posts – just wpadverts. (Link: https://bit.ly/2m4CNht) (Screenshot: https://www.dropbox.com/s/iwu3kdl4usvf1k1/Screenshot%202018-07-09%2017.53.23.png?dl=1 )

    2. Fixed $ sign shows on Sold areas – has this been fixed yet so I can switch to £? If not, could you point me into the right area again to manually code it.

    3. With BuddyPress & Mark as Sold – the contact form shows until it has been marked as sold. Even without it being enabled. I only want the BuddyPress/Private Message function. (Screenshot: https://www.dropbox.com/s/i5letr97dkymq9p/Screenshot%202018-07-09%2017.59.26.png?dl=1 )

    4. Related Ads, this is awesome additional I’ve only came across, any chance it will be a widget? I noticed the spacing is very tight from the ‘Send Private Message’ button, any way to increase the spacing or add a divider? (Screenshot above)

    5. Can we set a maximum Price Entry? For Example £9999.99? I’m finding people who can’t put £0 (or FREE) put maximum digits causing an ugly appearance. (Screenshot: https://www.dropbox.com/s/uqmh887jfsg2x30/Screenshot%202018-07-09%2018.02.03.png?dl=1 )

    6. Can we hide the Google Analytics aspect from the Advert Post, leaving it only enabled for the post author under their ‘Manage Adverts’ section? I’d rather not have my competitors seeing exact traffic per ad.

    7. My Custom Fields Extension doesn’t appear to be playing nicely even on this theme. You did take a look at my last site (Boss Theme), but no idea what you did. I’ve copied the structure within the plugin but it’s still all over the place. (Screenshot: https://www.dropbox.com/s/kq477yzh0odjqb4/Screenshot%202018-07-09%2018.03.35.png?dl=1 ) any ideas, or do you need to login to review?

    8. Is there a way to complete the ‘Description:’ field with a templated response? For example, you could put ‘Brand, Condition, Postage Options’ all for them to complete (where relevant) as opposed to using separate fields.

    9. Final one, Author’s Extension, how does it interact with BuddyPress and what functionality does it aim to provide to that type of community (if any)

    Thanks Greg.

    The page I need help with: [log in to see the link]

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    1. i am not sure what do you mean?

    2. there haven’t been any changes there as far as i remember.

    3. add in your theme functions.php the code below it will hide the “Show contact information” button

    
    add_action( "init", "my_late_init", 1000 );
    function my_late_init() {
        remove_action( 'adverts_tpl_single_bottom', 'adverts_single_contact_information' );
    }
    

    4. i am not planning to make a related ads widget, but you can create a widget https://www.wpexplorer.com/create-widget-plugin-wordpress/ and copy to it content from related ads snippet.

    5. you can set a maximum length for the price field using Custom Fields extension.

    6. add in theme functions.php file

    
    add_action( "init", "my_late_init_2", 1000 );
    function my_late_init_2() {
        global $wpadverts_ga;
        remove_action( 'adverts_tpl_single_details', array( $wpadverts_ga, "object_stats" ) );
    }
    

    7. in wp-admin / Appearance / Customize / Additional CSS panel add

    
    .adverts-search .advert-input input[type=text] {
        height: 30px !important;
    }
    

    8. there is no such feature i am afraid.

    9. currently Authors extension does not integrate with BP, it is actually for people who do not use BP or WC. Basically, the Authors extension allows managing user profile.

    Thread Starter Boffy

    (@boffy)

    Thanks for the reply Greg.

    Regarding 1) The Spacing. Please compare a normal Post vs the WPAdverts Post. There is a big gap next to the date of the posts that WPAdverts creates:

    WPAdverts – https://skirmishersdefence.co.uk/airsoftnation/advert/test-pricing/
    Blog Post – https://skirmishersdefence.co.uk/airsoftnation/burstxl/

    2) How do we convert the Mark as Sold symbol into Pounds? I thought you were fixing this, my mistake. I’ve forgotten where the file/convert is…this might be best to also add to documentation for anyone using currencies beyond $.

    7) that code didn’t sort out the search form, its all over the place. https://skirmishersdefence.co.uk/airsoftnation/marketplace/ (it should look like this one – https://airsoftnation.co.uk/marketplace/)

    Plugin Author Greg Winiarski

    (@gwin)

    1. ohh ok i think i see what do you mean, please try going to wp-admin / Appearance / Customize / Additional CSS panel and add there the code below

    
    .wpadverts-slides {
        clear: none !important;
    }
    

    2. can you let me know which dollar signs you would like to update? Maybe just link to the images from the documentation which have a dollar sign you want to be replaced https://wpadverts.com/documentation/mark-as-sold-paid-addon/

    Sorry, if this is something i wrote i will do but forgot, once i will know the details i will make it possible to change the icon either in configuration or via filter or action.

    7. i see you have the code added and the search form seems to be displaying correctly https://imgur.com/a/k18qnXA

    Thread Starter Boffy

    (@boffy)

    Hey Greg,

    That slides code did the job, thank you again.

    2) Regarding the currency, it’s on the top of the post, bottom of the post, along with the ‘$ Sold’ under the Manage adverts.

    But I figure if we’re picking a currency on the WPAdverts main setup, it should probably be linked? Or have it an option on the MAS configuration next to the ‘show icons’.

    https://www.dropbox.com/s/dkcpws8y9a81dcz/Screenshot%202018-07-11%2010.59.15.png?dl=1
    https://www.dropbox.com/s/duo5nt9ui28xyne/Screenshot%202018-07-11%2010.59.33.png?dl=1

    I’ve actually resolved it again this morning, it’s inside the class-wpadverts-mas-frontend.php

    https://www.dropbox.com/s/ror5er13c6emkjr/Screenshot%202018-07-11%2011.21.53.png?dl=1

    I’ve replaced the “icon” => “adverts-icon-dollar” with pound in 4 locations.

    It would be nice if you put this into the plugin as I’m sure other users would be stumped if it wasn’t available on the front end. It also means if you update the plugin I won’t risk it being lost.

    7) I noticed the search form did update, perhaps I had cached the old one without realising it. What I did notice in MAL is there is a ‘radius’ button, however I’ve had to untick that so I can use the ‘custom field form’. Otherwise I can’t turn the ‘Radius’ option to appear under the advanced search section

    It doesn’t look like the search is working with the Google Autocomplete, but perhaps this is due to it being on the staging website rather than live one. I’m going live with this website on the 31st so I’ll test again then.

    Plugin Author Greg Winiarski

    (@gwin)

    2. ok i have this added to our issue tracker now and changing the dollar sign should be available in next release.

    7. the MAL location search should work the same with and without Custom Fields enabled. Are you getting a different results when CF extension is enabled?

    Thread Starter Boffy

    (@boffy)

    I’ll do some testing on 7 today Greg. Unfortunately right now I cannot select any locations beyond the geolocation button using the CF right now.

    Can you check 1) Again

    .wpadverts-slides {
        clear: none !important;
    }

    The gap appeared this morning and I’m not sure why. https://skirmishersdefence.co.uk/airsoftnation/advert/testing-featured-post/

    Thread Starter Boffy

    (@boffy)

    Ah to follow up on the gap, it happens once the item has been marked as Sold.

    Plugin Author Greg Winiarski

    (@gwin)

    1. in Additional CSS panel add

    
    .article-content .adverts-flash-messages {
        clear: none !important;
    }
    

    7. in wp-admin / Classifieds / Options / Maps and Locations panel what value do you have in field “Limit Results To”?

    Thread Starter Boffy

    (@boffy)

    Thread Starter Boffy

    (@boffy)

    But the top gap has been resolved ??

    Plugin Author Greg Winiarski

    (@gwin)

    You have the Limit Results To field at the end of first screenshot, it currently has value “EN” try changing it to “en”.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘List of Bugs on New Setup’ is closed to new replies.