hwuser
Forum Replies Created
-
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Compatibility with mapsSomething similar to this web, with the filter of MTDF plugin, filters the CPT but also the map of geo my wp.
https://www.doyouapartments.com/ocio/barcelona/
something similar I was looking for.
Thanks.sorry. I mean that I in the form of the plugin add ACF fields. In the frontend I create a new post with this form and fill these ACF fields. And when I finish, when I’m going to visualize the post in the frontend, I see my new post well, but at the end of it all I see a list of the ACF: and its content.
ok…thanks!
ok thanks!
Forum: Plugins
In reply to: [Bulk Edit Posts and Products in Spreadsheet] Multiple selectionAh ok, I hope this feature come early. Many thanks!
Hello, I would like to use your plugin but I get the following error:
1.- In the policy IAM:
“This policy contains the following error: Has prohibited field Principal For more information about the IAM policy grammar, see AWS IAM Policies”
I understand that the solution is “Remove the principal element all together” but I do not know what it means or how to fix it.I installed to try the Offload Media plugin and it works well and imports the images to the bucket without problems.
2.- In the back office:
I get the following error message.
“Site is unreachable or an error occurred. Batch processing will not function. If you are using basic authentication, you may need to disable it. Error message was: HTTP response code was 503”3.- In the Media Cloud Troubleshooter:
I have error in the last option only that can not work with background.
At first I gave php error but I’ve fixed it.In the bucket I have the next policy:
{
“Version”: “2008-10-17”,
“Statement”: [
{
“Sid”: “AllowPublicRead”,
“Effect”: “Allow”,
“Principal”: {
“AWS”: “*”
},
“Action”: “s3:GetObject”,
“Resource”: “arn:aws:s3:::name-of-my-bucket-/*”
}
]
}Sorry if I mix several concepts but I’m a bit lost with the configuration.
Many thanks.Perfect!!! Many thanks!!!
A correction for other users, I think in add_post_meta: ca_post_type is _ca_post_type.
add_post_meta( $condition_group_id, ‘ca_post_type’, <post_id>);
Is add_post_meta( $condition_group_id, ‘_ca_post_type’, <post_id>);Thanks for your support!
Perfect!!!! It works perfectly, both in PC and mobile. Many thanks!!!
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Same image in the thumbnailsYeeeeeeees!!! Already works perfectly!!!!
Thank you for the speed in finding a solution.
Thank you very very much !!!!Forum: Plugins
In reply to: [Related Posts by Taxonomy] Same image in the thumbnailsHello, many thanks for your quick reply. But the code does not do anything. The same image keeps appearing in all the related posts…
Thanks for your answer. At the moment I do not need to add users to a level because I synchronize them with a role.
What I do not understand is the conditions. I see in the database in the table “posts” the record that corresponds to the post type “condition_group”. I see that it is associated with the post id of the level that corresponds to it, but can’t see how the conditions are saved.
In the “postmeta” table I see records like the meta_key _edit_lock are created and as meta_value a numbering of style 1539690142: 1 and other records like _ca_duration, _vc_post_settings etc.
I understand that first I have to add the condition group record like this:
$post_id = wp_insert_post(array (
‘post_type’ => ‘condition_group’,
‘post_title’ => $your_title,
‘post_content’ => $your_content,
‘post_status’ => ‘publish’,
‘post_parent’ => $id_post,
‘comment_status’ => ‘closed’, // if you prefer
‘ping_status’ => ‘closed’, // if you prefer
));
add_post_meta( $post_id, ‘???????????’, ??????????);And second, I have to add the conditions with this function:
<?php wp_set_object_terms( $object_id, $terms, $taxonomy, $append ); ?>If you have some time, could you clarify it or give me an example to restrict the post to a category?
Thank you.Hello,
I have some ideas about this response:
https://www.ads-software.com/support/topic/restrict-user-access-manage-those-levels-as-metadata/I make this to create a new level:
$your_title = “New Level”;
$your_content = “”;
$post_id = wp_insert_post(array (
‘post_type’ => ‘restriction’,
‘post_title’ => $your_title,
‘post_content’ => $your_content,
‘post_status’ => ‘publish’,
‘comment_status’ => ‘closed’, // if you prefer
‘ping_status’ => ‘closed’, // if you prefer
));To add a role member to this group I make this:
add_post_meta( $post_id, ‘_ca_role’, ‘role_X’ );
It’s well?
Now I want to make a conditional logic restriction in one category or taxonomy. How can I do this?
And if is posible, to extend this new level to another level that I choice.
Thanks!
Forum: Plugins
In reply to: [Groups] Compatibility with divi themeOk Thanks!