fabiano1987
Forum Replies Created
-
Forum: Plugins
In reply to: [FCM Push Notification from WP] Legacy API to HTTP v1 Migration@mostafa9999 I’ve already tried it. It doesn’t work
Forum: Plugins
In reply to: [FCM Push Notification from WP] FCM Legacy Server API Issuethere are no plugins with HTTP V1 apis ??
Forum: Plugins
In reply to: [FCM Push Notification from WP] Legacy API to HTTP v1 Migration@mostafa9999 no ?? I’m still desperate. I’m just sending notifications manually from firebase panel but it’s a pity
Forum: Plugins
In reply to: [FCM Push Notification from WP] FCM Legacy Server API IssuePlease do something.
it stopped to work due to Google APIs changes
we can pay for it if needed but please update the plugin
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Some edits to the manage.php pagei think i’ve edited the original source code too much for making it working.
[adverts_list display=”list”] is currently displaying the same layout as the grid view. I think i removed the filter somewhere (and long time ago) so i can’t remember how it was
I can re-download the original plugin and have a look at the source code.. can you tell me in which file I can find the two different layout codes for Grid and List?
i’ve found a document which says:
* Allowed sizes are: full, adverts_gallery, adverts_upload_thumbnail
so that’s all.
I’m sure it’s possible to add other the support for other sizes but i’ve temporary solved by changing the adverts_gallery sizes in WpAdverts > OptionsOk i did it with a simple editing of the native gallery code (class-gallery-helper.php)
i love the result
i just need help for another thing. I would like to change the thumbnail resolution with another one with higher pixels
The code that displays the image is
<img src="<?php echo esc_attr($image["url"]) ?>"
and the $image code is:
$image = adverts_get_post_img( $attach, array( "adverts_gallery", "full" ) );
it looks clear that the gallery is using “adverts_gallery thumb dimensions (which is setted to 400×400 pixels but i’ve more thumbnail sizes available on my wordpress and i would like to use the one named “large” which is large: 770×auto pixels
i’ve tried to change the code in
$image = adverts_get_post_img( $attach, array( "large", "full" ) );
but it doesn’t work
i’ve also tried
$image = adverts_get_post_img( $attach, array( "adverts_gallery", "large" ) );
but no luckcan you help me?
i’ve found it by myself
is posts_per_page??
It worked !
Thank you very much!Can’t wait for wp Adverts 2.0
Hi greg,
i’ve tags taxonomy assigned to specific Adverts as you can see from this:But it doesn’t work. For Example, the “iPhone 13” tag ID is 842
and when i write this:
[adverts_list tax__tags="842"]
it renders the latests ads added to the site, not the one with this tagI am unable to proceed with both solutions. They are too difficult for me but i’ve got an idea..
it’s possible to edit your plugin or functions.php to add something link this?
[adverts_list tags="CIAO"]
we can already show the ads inside a specific category number with the [advert_list] shortcode. Could we add something like that for tags too?
i’ve another question now
it’s possibile to do something like that?
if category_id = 19 && category_id = 32 .... do something
i mean, i’d like to write a condition that involved 2 or more categories using “and” / “or”
ok i figured it out
$advert_category[0]->term_taxonomy_id == "478"
this works ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Search Bar and CSS problemthank you
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Search Bar and CSS problemlooks like the problem happens because it requires some time to load the advert-fronted.css
so if i include the css inside my theme style.css i don’t see the glitch anymore but i don’t think this is the right method to make it disappear