xxkiefxx
Forum Replies Created
-
Ok that’s strange. I was able to set up the condition also for the upload field, but after clearing the cache and deleted the field I’m not able to apply the condition anymore.
I found out that this field is not supported yet… and this explains why the validation didn’t work.
Any idea, if and when, it will be added?thank you
Forum: Plugins
In reply to: [Meta Box] custom field into “the content”Hi Neo,
I’m almost there… I did use the filter hook in this way:add_filter( 'the_content', 'filter_the_content_in_the_main_loop', 1 ); function filter_the_content_in_the_main_loop( $content ) { // Check if we're inside the main loop in a single Post. if ( is_singular() && in_the_loop() && is_main_query() ) { return $content . rwmb_the_value( 'file_allegato' ); } return $content; }
the only problem is that the custom field appears two times, both before and after the content of the article.
Hi RazyRx,
sorry to bother yuo again. I tried to add some space after the products so that the browser can’t detect the end of the page, but the behaviour doesn’t change.
Are you sure is something browser related? or have I not understand you answer or better the problem?
Thank youForum: Plugins
In reply to: [Meta Box] Image advance and apostrophe in title not showingHi, no-one has the same problem? Is there any fix to solve it?
thank youForum: Plugins
In reply to: Metabox file_advanced upload bug/issue – mime_type?no one has the same issue?
Forum: Plugins
In reply to: [YoImages] Little Bug with the Crop Button for Image Quality 100%Hi,
I’m not a programmer… but in my case I’ve fix this bug changing the line 191 of the file edit-image-size.phpfrom this:
class="button media-button button-primary button-large media-button-select">
to this:
class="media-button button-primary button-large media-button-select">
or rather I’ve just deleted the class “button”
Hope it could help