mstdmstd
Forum Replies Created
-
Forum: Plugins
In reply to: On get_posts I need combination OR ANDI still search for solution… If there is any?
Forum: Plugins
In reply to: [WooCommerce] Products filters for get_posts functionUPDATE:
Also I made search by sku by adding in argumants :
'meta_value' => '_sku',
looks like that this new condition works as AND, but I need this work as OR condition.
If there is a way to make it?Forum: Fixing WordPress
In reply to: I need testing products for woocommerceThanks,
That helped!
Also I see that in post_content some “fish” data is used…
If there are some multilangual version of these data?Also if there are some similar sample data for ordinary posts? If possible multilangual(english, french, spain etc…)
Forum: Plugins
In reply to: [Watermark WP Image Protect] wpipp_exclude_from_watermark does not workThanks, I found right decision in the end of wp-content/plugins/wp-image-protect/php/wpipp-image-manager.php file!
Forum: Plugins
In reply to: [Watermark WP Image Protect] wpipp_exclude_from_watermark does not workAlso in Settings I see in “Advanced Options/Advanced Options” I see value like :
(.*)wp-content/uploads/((.*)\.(jpe?g|gif|png))$=>$1wp-content/plugins/wp-image-protect/php/wpipp-image-manager.php?src=wp-content/uploads/$2,(.*)wp-content/gallery/((.*)\.(jpe?g|gif|png))$=>$1wp-content/plugins/wp-image-protect/php/wpipp-image-manager.php?src=wp-content/gallery/$2
Looks like that is the rule when source image is rendered with watermark image.
I see function wpipp_add_rules function in wp_image_protect class for setting of watermark rendering rule.
But how to make for some posts image not to apply any rule?
And not use any cache, as I se cache used in plugin?Thanks!
Forum: Plugins
In reply to: [Watermark WP Image Protect] wpipp_exclude_from_watermark does not workThank you for your response!
Yes, as I see all images are ‘attached’ and in backend site they are shows as “Featured images”.
But as I see that is not point of problem.
Watching code I saw ‘wpipp_exclude_from_watermark’ option used in wpipp_add_exclude_watermark_field and wpipp_add_exclude_watermark_field_save methods.
For me seems that these methods for setting properties of images of some posts.
Is it so?I would like to find where is an entrance point when watermark is applied to the image.
To set additive condition in this place.Also I saw “debug” option for your plugin, but setting it I did not find how to use advantages of it and where to trace debug info?
Forum: Plugins
In reply to: [Watermark WP Image Protect] wpipp_exclude_from_watermark does not workIf there is some plugin convinient for setting of watermarks on fly without changing of source
image : like through filter that depending on status to show/hide watermark on differerent parts of site.Forum: Plugins
In reply to: [Watermark WP Image Protect] wpipp_exclude_from_watermark does not workI tried to debug code of this plugin, but I did not find where is an entrance point when watermark is applied to the image…
If you worked with this plugin, please give me a hint, I would add additive condition on myself…Forum: Fixing WordPress
In reply to: Correct url for categoriesYes, as any post can be related with several categories, add and check some special category for all items. is it your idea?
Forum: Fixing WordPress
In reply to: Correct url for categoriesPlease, explain how ?
Forum: Fixing WordPress
In reply to: Correct url for categoriesThanks for your hints, I reviewed categories made in menu editor of backend and made working url like :
https://local-wp-songs.com/artists_songs_tax/artists-songs-songs/
where https://local-wp-songs.com – my host
artists_songs_tax – name of registered taxonomy by functionregister_taxonomy( 'artists_songs_tax', array( 'artists_songs' ), $args );
and artists-songs-songs – is slug field of my category in terms table.
I have several categories created withy ‘artists_songs_tax’ taxonomy and they all are show with similar urls.But also If there is a way to show all categories of my taxonomy?
urls like https://local-wp-songs.com/artists_songs_tax/ do not work for me….
I want to show all posts all categories of my taxonomy someway…Forum: Fixing WordPress
In reply to: Correct url for categoriesSorry, this needs for clarification.
On this page I set Permalink Settings->Common Settings == “Post name”
Optional parameters are empty.
After this changes site with url
https://local-wp-songs.com/artists_songs/a-boy-like-me-a-girl-like-you/works ok, where
artists_songs – 2nd para,eter sent to register_taxonomy above.
a-boy-like-me-a-girl-like-you – slug of an itemBut I would like to run page with 1 category(with all it’s posts) of created above category and I do not know how to make it.
Forum: Fixing WordPress
In reply to: Correct url for categoriesSeems no. Please, give ref how to do it.
Forum: Plugins
In reply to: In wordpress 4 need pagination plugin working with any tablesLet me to ask in other way : I need pluging not to connecting with any table, just to draw pagination pages by given parameters like n=base url, number of pages etc… Splitting of data I can make on myself. I made something like this in codeogniter 2 projects. If there is something good for this ?
Forum: Plugins
In reply to: Problems of multilanguage updating wordpress 3.0.0 to wordpress 3.3.1Please, explain how to make in wordpress pre-domains that switching to other language link looks like
https://it.site.com/ and is rendered by https://it.site.com/ site and “it” is language parameter?Are these some rules in .htaccess ?