rodesro
Forum Replies Created
-
Thank you for your help, you do an excellent job with good customer service, my website:?https://www.robertdesrochers.com?works very well
Forum: Plugins
In reply to: [AI Search Bar] Add a promptThank you for your help, you do an excellent job with good customer service, my website: https://www.robertdesrochers.com works very well
Forum: Plugins
In reply to: [AI Search Bar] How does it find content?Hello, can we add a prompt in the shortcode ? If not, will you do it soon ?
Thank you.
{
“Keywords”: “timex”,
“Resources”: [
“CustomerReviews.Count”,
“CustomerReviews.StarRating”
],
“SearchIndex”: “All”,
“PartnerTag”: “xxxxxxx-20”,
“PartnerType”: “Associates”,
“Marketplace”: “www.amazon.ca”,
“Operation”: “SearchItems”
}{ “SearchResult”: { “Items”: [ { “ASIN”: “B07FFBHM7F”, “DetailPageURL”: “https://www.amazon.ca/dp/B07FFBHM7F?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B003LL3TOY”, “DetailPageURL”: “https://www.amazon.ca/dp/B003LL3TOY?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B00IT2X6FC”, “DetailPageURL”: “https://www.amazon.ca/dp/B00IT2X6FC?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B00857LNWY”, “DetailPageURL”: “https://www.amazon.ca/dp/B00857LNWY?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B003LL3TEE”, “DetailPageURL”: “https://www.amazon.ca/dp/B003LL3TEE?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B013SXILGK”, “DetailPageURL”: “https://www.amazon.ca/dp/B013SXILGK?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B00857LPC2”, “DetailPageURL”: “https://www.amazon.ca/dp/B00857LPC2?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B003LL3TMQ”, “DetailPageURL”: “https://www.amazon.ca/dp/B003LL3TMQ?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B08YRQM64G”, “DetailPageURL”: “https://www.amazon.ca/dp/B08YRQM64G?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” }, { “ASIN”: “B011T23WOI”, “DetailPageURL”: “https://www.amazon.ca/dp/B011T23WOI?tag=xxxxxxx-20&linkCode=osi&th=1&psc=1” } ], “SearchURL”: “https://www.amazon.ca/s?k=timex&rh=p_n_availability%3A-1&tag=xxxxxxx-20&linkCode=osi”, “TotalResultCount”: 306 } }
I am in Canada
Forum: Fixing WordPress
In reply to: Create a category with the userlogin or username at registrationUse case is: 1-New author registers on the site. 2-The new suscriber publishes in the category of the author name, into the title (Postie Plugin)
(Author Category Plugin do manualy the category association in the user profil.)
The code below works well for category creation in a post.
add_action(‘save_post’, ‘add_title_as_category’);
function add_title_as_category( $postid ) {
if ( defined(‘DOING_AUTOSAVE’) && DOING_AUTOSAVE ) return;
$post = get_post($postid);
if ( $post->post_type == ‘post’) { // change ‘post’ to any cpt you want to target
$term = get_term_by(‘slug’, $post->post_name, ‘category’);
if ( empty($term) ) {
$add = wp_insert_term( $post->post_title, ‘category’, array(‘slug’=> $post->post_name) );
if ( is_array($add) && isset($add[‘term_id’]) ) {
wp_set_object_terms($postid, $add[‘term_id’], ‘category’, true );
}
}
}
}Forum: Fixing WordPress
In reply to: Create a category with the userlogin or username at registrationYes that’s right, but in this case the contributor uses Postie’s plugin to publish a post by email. With the Postie category option in the topic, this will allow the contributor to publish directly into the author category, if I can find the code to do that. Currently I have the code for the role condition, it misses me the category code by autheur (like the example above). I have this problem because contributors use Postie plugin, it’s the easiest way for them to publish a post.
Forum: Fixing WordPress
In reply to: Create a category with the userlogin or username at registrationBecause they are 50 finance professionals with their own clients and confidential information. We are intranet private blog. Only authors will have the opportunity to create their categories. I think they will have about 50 authors. Can you help me?
Forum: Fixing WordPress
In reply to: Folder name with upload_dir Organize uploads by year, month and dayI agree with you, but I have to find a way to avoid two or more files with the same name in the same folder, eg document.pdf, document-1.pdf, doucument-2.pdf
Forum: Fixing WordPress
In reply to: Writing Post tag auto complete not workingI Mark
I have the same problem as your. Did you find a solution?
Thanks,
Bob