whoaloic
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Login Page Customizer] Text above form fieldsHello!
For example: a custom message to inform why a site is restricted “this site is restricted to … please login to acces to our site”Best regards
Forum: Plugins
In reply to: [WP Store Locator] Improve seo ranking with store locator finderYes I use Yoast SEO for each store single page so that when a user enters a search query like “activity + city” (if I got a store in the city), single store page displays in the SERP. But I was thinking about a way to optimize SEO for store page finder. Maybe is there a solution to get this page in the SERP when user enters a search query with a the name of a city that is not a location of a store but the store finder will show the nearest stores of the city he enters.
Forum: Plugins
In reply to: [Broadcast] Visual Composer Image element not duplicatingThank you
Forum: Plugins
In reply to: [Broadcast] CanonicalHello
Does child post will be indexed on search engines?
I have posts that I want to share between blogs but I need blogs posts to be indexed.Ooops I did not see that!
Do you think to implement such advanced items within your plugin?Hello I screenshot my concern: https://i63.tinypic.com/nfitu9.jpg
An Ubermenu item is a menu item that creates advanced layout: https://sevenspark.com/docs/ubermenu-3/advanced-menu-items
For example: custom content in a menu, a divider,…On wide screen, ubermenu item displays what I expect.
But on responsive menu, it shows the menu item title.Allright I will use CSS.
I also try to add in my menu some ubermenu items https://wpmegamenu.com/ but it does not work.
I would like to custom display of my menu items like this: https://i67.tinypic.com/fay14k.jpg
For example:
Menu item 1
Menu item 2
Menu item 3
(divider)
Menu item 4
Menu item 5
(divider)
Menu item 6Perfect ??
Thank you for the answer.
So I need to find a way to upgrade user’s role and notify them by email in multisite network.Forum: Plugins
In reply to: [Taxonomy Images] Show term image in a query loopThe following code is working.
function display_cat_suppliers( $atts, $content = null ) { extract(shortcode_atts(array( "number" => '9999' ), $atts)); ?> <div class="cat-suppliers"> <?php ob_start(); // your taxonomy name $tax = 'supplier_category'; // get the terms of taxonomy $terms = get_terms( $tax, [ 'parent' => 0, 'number' => $number, 'hide_empty' => true, // hide empty terms ]); // Randomize Term Array shuffle( $terms ); // loop through all terms foreach( $terms as $term ) { // Set your defined term ID $tem_id = $term->term_id;; // (an integer) // Get the array of Term ID/Image ID pairs $taxonomy_images = get_option( 'taxonomy_image_plugin' ); $attachment_id = $taxonomy_images[$tem_id]; // Image ID $image = wp_get_attachment_image( $attachment_id, 'portfolio_4_col' ); // Image $term = get_term( $tem_id ); // The WP_Term object $link = get_term_link( $tem_id ); // The term link ?> <div class="supplier_4_col_item_wrapper mix"> <a href="<?php echo get_term_link( $term ); ?>"> <div class="style-item"> <div class="front"> <!-- front content --> <figure> <div class="style-item-thumbnail"> <?php echo $image; ?> </div> <figcaption class="style-item-hover"></figcaption> <div class="style-item-title"> <span> <?php echo $term->name; ?> </span> </div> </figure> </div> </div> </a> </div> <?php } return ob_get_clean(); ?> </div> <?php }
- This reply was modified 7 years, 1 month ago by whoaloic.
Allright ??
Well I think it’s due to left-margin of div.em-booking-login.
Please check this page on a mobile screen: https://demo.wp-events-plugin.com/events/josh-groban-2018-02-06/ and you will see that login form is out of the screen.Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Shortcode outputWorks great ??
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Groups integration in CF7 formGreat ??