designemesis
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget for Social Page Feeds] There was a problem with this request.Facebook are now investigating the issue and it has been assigned to an engineer:
https://developers.facebook.com/support/bugs/2526305424326407/
Forum: Plugins
In reply to: [Widget for Social Page Feeds] There was a problem with this request.Appears to be a Facebook issue but no official response from them yet.
Affecting Drupal also:
https://www.drupal.org/project/fb_likebox/issues/3181945Forum: Plugins
In reply to: [Widget for Social Page Feeds] There was a problem with this request.Hi,
I had this issue using the standard FB social page widget and have been trying to track down a solution.. so I tried your plugin and it’s the same problem.
It seems to be something to do with cookies and CORS policy.
If you accept FB cookies on their site the issue disappears but if you have a browser which isn’t logged into Facebook / haven’t accepted their cookies then it happens.
There appears to be a thread on this here which I also commented on:
https://developers.facebook.com/support/bugs/401555984560942/Any more info from your side?
Hi Aert,
Thank you for the quick reply. Yes I can see the error and understand this is out of your control.
EDIT: Ah I see you are from Complianz my bad I thought you were the plugin author of Recaptcha V2 ??
If there is no easy fix I can stay on CF7 5.1.9 OR I’ll upgrade to recaptcha v3.
Hope there is a fix in the future.
Thanks
- This reply was modified 4 years, 8 months ago by designemesis.
- This reply was modified 4 years, 8 months ago by designemesis.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Remove post content in wp-adminHi Greg,
Yes that’s what I’m currently doing. I’m just wondering if there is a way to keep the WP admin in english and the plugin in a different language.
I noticed for MAL I could select the language without affecting the backend so would be quite useful if there is a way to add this functionality to the main plugin ?
Thanks again
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Cannot add product descriptionWithout seeing all the code and the theme you are currently using (which I suspect could be why it’s doing this) it’s difficult to know where the style is being set.
However a quick fix is to add the following CSS to disable the style in your .wp-editor-container textarea.wp-editor-area class in editor.min.css add the following:
visibility: visible!important;
So it should look like this:
.wp-editor-container textarea.wp-editor-area { width: 100%; margin: 0; box-shadow: none; visibility: visible!important; }
Just to note this is a quick fix and you should investigate more as to where this is being set. If you have Dreamweaver or similar search the entire folder for ‘hidden’ and see what comes up.
- This reply was modified 7 years, 7 months ago by designemesis.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Cannot add product descriptionIn your inline style CSS for the element your textarea is set to “visibility: hidden;”
You need to remove the style to allow it to be editable.
Hope this helps
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Remove post content in wp-adminThanks Greg, another question on an unrelated topic..
I noticed on the MAL addon there is an option to select the language of the addon.
Is there a way of adding this to the main plugin so you can select the language of the plugin rather than having to change the language in the main WP settings.
Thanks
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Search by custom field issues (meta_query)Works great thanks!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Search by custom field issues (meta_query)Hey Greg,
Thanks very much this worked!
I have another question about how the search works.
Right now if I select category & location the results returned are only categories in that particular location.. which is right.If I select category + location + condition it is returning all items of that condition even if the location and category are not correct.
How can I make it so my condition field behaves like category/location?
It should be like AND but it’s behaving like an OR.. if that makes sense.Thanks again!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Pending ad email notification URLHave you changed your home URL and site URL in WordPress since you changed it to a domain?
If so try to regenerate the permalinks:
Settings -> PermalinksThen hit save.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Timber – Get adverts_price of postsNow I’m trying to work out how to get the currency format :/
Any ideas anyone ??
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Timber – Get adverts_price of postsSolved, actually really simple. checked the docs for get_posts:
{{custom_field}} // whatever custom field you’ve added (in the post_meta table){% for post in adcat %} <li><a href="{{ post.link }}">{{ post.name }}<img src="{{TimberImage(post.thumbnail).src('medium')}}" /></a>{{post.date}}</li> <strong>{{ post.adverts_price}}</strong> {% endfor %}
Forum: Plugins
In reply to: [Timber] Get meta_value of posts in a categorySolved, actually really simple. checked the docs for get_posts:
{{custom_field}} // whatever custom field you’ve added (in the post_meta table){% for post in adcat %} <li><a href="{{ post.link }}">{{ post.name }}<img src="{{TimberImage(post.thumbnail).src('medium')}}" /></a>{{post.date}}</li> <strong>{{ post.adverts_price}}</strong> {% endfor %}
Changed value to be the same as text.. seems to work ??