fabioladercole
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Custom post types on every site of the networkWorked like a charm!
$blog_id = [1, 2, 3]; foreach ($blog_id as $blog) { switch_to_blog($blog); $args = array( 'post_type' => 'services', ); $the_query = new WP_Query($args); if ($the_query->have_posts()) { while ($the_query->have_posts()) { $the_query->the_post(); echo the_title(); } } wp_reset_postdata(); restore_current_blog(); }- This reply was modified 4 years, 10 months ago by fabioladercole.
Forum: Networking WordPress
In reply to: Custom post types on every site of the networkHello,
thank you for your feedback. I’ll try it and let you know if it worked out as expected.
Hello,
thank you for your reply. What I was looking for was quite different. Right now I have an input field where users insert, for example, their computer’s serial number. If in the future they want to open a new ticket for the same serial code, they shoud type the serial code once again when I’d like to create a dropdown menu where they can find previous serial code inserted.
Regards
Forum: Fixing WordPress
In reply to: Show history message sent WordPressHello,
thank you for your feedback.
My concept was more about a front-end experience where a user can see all the request sent. Maybe the contact form isn’t the best idea, but I’m looking for a plugin that works like this:
a user can send request of assistance via contact form and then, in its personal area, can view all the messages sent and maybe request assistance for the same issue or something like that
Great, thanks!
I guess I’ll put it in another way:
The plugin shows an invoice number and a download PDF button with a green checkmark for every incoming order. Is there an option or something I should check to bring it to the normal behaviour i.e. “show the invoice number and a green checkmark only when the PDF is downloaded/generated”?
Thank you
I’m sorry but right now I have all incoming orders checked with a invoice number and a green checkmark on the invoice button. Maybe there is something that I’m missing?
Thanks, that helped! How did I miss that ^^
Forum: Plugins
In reply to: [Contact Form 7] ::after selector submit button CF7Hello Takayuki, thank you for answering me. Unfortunately, I cannot share the website’s link ’cause it’s still in development. I am just curious about why I cannot use the ::after selector on a CF7 submit button. Maybe there’s a conflict with the ajax-loader?
Thank you