Forum Replies Created

Viewing 40 posts - 6,681 through 6,720 (of 25,000 total)
  • Author
  • in reply to: How do effect border in woocommerce? #173858
     Laura
    Moderator

    Hello, the css was made for that, but on hover, do you want it to be always there?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Blog page background #173833
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, can you explain a bit more what do you need? 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Kleo Social Icons #173787
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello by white header do you mean the header of the table or the page?
    For the elements try by adding them to the description inside li tags ( choose code editor instead of visual )

    COPY CODE
    
    <li> Test Item </li>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Dynamic link to the profile #173785
     Laura
    Moderator

    Hello, you could use it in a widget by enabling php for widgets adding this to function.php of child theme

    COPY CODE
    
    add_filter('widget_text','execute_php',100);
    function execute_php($html){
         if(strpos($html,"<"."?php")!==false){
              ob_start();
              eval("?".">".$html);
              $html=ob_get_contents();
              ob_end_clean();
         }
         return $html;
    }
    

    And at the widget add this (you can add it inside of the button shortcode where it asks for the url )

    COPY CODE
    
    <a>">Profile</a>
    

    If the button shortcode alreay has the “<a” just copy

    COPY CODE
    
    <?php echo bp_loggedin_user_domain(); ?>
    

    Inside the href=” – “

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Main Page ‘Latest Registered Members’ #173784
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Advanced search for paying members #173783
     Laura
    Moderator

    Hello, that is not available right now as it would require custom development, i suggest to contact a developer to help you with that 🙂 If you need anything else please let me know

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Button login/register setop #173782
     Laura
    Moderator
    Not marked as solution
    in reply to: install custumization services #173781
     Laura
    Moderator
    Not marked as solution
    in reply to: Install Fail #173736
     Laura
    Moderator
    Not marked as solution
    in reply to: SIte went down while installing plugins #173735
     Laura
    Moderator

    Understood 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: add friend without accepting request #173733
     Laura
    Moderator

    Hello, i see a maintenance of 48h, let me know once i can access 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Category label on masonry grid #173732
     Laura
    Moderator

    Hello, sadly the only thing to change is the background of the label and test style with css

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Use of KLEO Client #173731
     Laura
    Moderator

    Hello, should be displayed at the clients carousel element 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: recaptcha #173730
     Laura
    Moderator

    Hello, recaptcha is now working but to add it to your form you may need the help of a developer as you need to integrate it with the register form

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Sidemenu – custom link -question #173727
     Laura
    Moderator

    Hello, try by adding this to the header.php ( at child theme ) just below <head>

    COPY CODE
    
    <script>
    /** 
     * Open all external links in a new window
     */
    jQuery(document).ready(function($) {
        $('a').not('[href*="mailto:"]').each(function () {
    		var isInternalLink = new RegExp('/' + window.location.host + '/');
    		if ( ! isInternalLink.test(this.href) ) {
    			$(this).attr('target', '_blank');
    		}
    	});
    });
    </script>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Issues with Private Messaging and Dropdown Menu #173726
     Laura
    Moderator
    Not marked as solution
    in reply to: restrict access to a users profile #173725
     Laura
    Moderator

    Hello, added this plugin with a few modifications

    COPY CODE
    
    <?php
    /*
    Plugin Name: PMPro BuddyPress Customizations
    Plugin URI: http://www.paidmembershipspro.com/wp/pmpro-buddypress-customizations/
    Description: Example code to lock down parts of BuddyPress with PMPro
    Version: 0.2
    Author: Stranger Studios
    Author URI: http://www.strangerstudios.com
    */
    /*	
    	Copyright 2010	Stranger Studios	(email : jason@strangerstudios.com)	 
    */
    //hide some pages in buddypress
    function pmpros_hide_buddy_press_pages()
    {
    	$uri = $_SERVER['REQUEST_URI'];	
    	$not_allowed = array(
    		//"/members/",
    		"/members/*/profile/"
    	);
    	foreach($not_allowed as $check)
    	{
    		//prep for regex
    		$check = str_replace("/", "[\/]+", $check);					//replace /
    		$check = str_replace("*\/", "[^\/]*\/", $check);			//replace * in middle of URIs
    		$check = str_replace("+*", "+.*", $check);					//replace * at end of URIs
    		$check = "/^" . $check . "\/?$/";							//add start/end /
    				
    		if(preg_match($check, $uri))
    		{			
    			wp_redirect( 'http://etraveldate.com/membership-checkout/' );
    			exit;
    		}
    	}
    }
    add_action("init", "pmpros_hide_buddy_press_pages");
    //add_action("init", "pmpros_add_members");
    add_action("pmpro_after_change_membership_level", "pmpros_pmpro_after_change_membership_level", 10, 2);
    ?>
    

    Now your users will be redirected to Membership Levels when they try to access the profile

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Can’t search for members #173699
     Laura
    Moderator

    Hello, try using the plugin Ajax Search Lite, as it allows many options of ajax search and a very good layout 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: How to change icons in profile drop down list #173696
     Laura
    Moderator

    Hello, that can be done with css 🙂 Just let me now which icons for which and i will be happy to help you 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Post Relacioned #173695
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme or at Appearance > Edit 🙂

    COPY CODE
    
    div#jp-relatedposts {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: SIte went down while installing plugins #173634
     Laura
    Moderator

    Hello 🙂 Do you mean the logo?
    If so, its at wordpress admin > Sweetdate > General
    To change the website name and descriptions go to Settings > General 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Change menu alignment for medium screen size #173633
     Laura
    Moderator

    Glad to help 🙂 If you can rate us 5 stars at themeforest that would help a lot 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Install Fail #173632
     Laura
    Moderator
    Not marked as solution
    in reply to: buddypress order by matching #173631
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Elementor #173630
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Chats and email customization #173629
     Laura
    Moderator
    Not marked as solution
    in reply to: add friend without accepting request #173627
     Laura
    Moderator

    Hello, can you share access so i can check it out? 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: New Document Type #173625
     Laura
    Moderator
    Not marked as solution
    in reply to: No affraid about Theme – please refound #173624
     Laura
    Moderator
    Not marked as solution
    in reply to: Header in bbpress #173623
     Laura
    Moderator
    Not marked as solution
    in reply to: Carousel Arrow background #173622
     Laura
    Moderator

    Glad to help 🙂 If you can rate us 5 stars at themeforest that would help a lot 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Blog page background #173621
     Laura
    Moderator
    Not marked as solution
    in reply to: Category label on masonry grid #173620
     Laura
    Moderator

    Hello 🙂 do not worry your support its automatically renewed here 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Bugs #173618
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, now i see an internal server error, let me know 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: blog layout #173614
     Laura
    Moderator
    Not marked as solution
    in reply to: saving search #173612
     Laura
    Moderator
    Not marked as solution
    in reply to: Media Lightbox Issues #173608
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

Viewing 40 posts - 6,681 through 6,720 (of 25,000 total)

Log in with your credentials

Forgot your details?