Forum Replies Created

Viewing 40 posts - 8,481 through 8,520 (of 20,101 total)
  • Author
  • in reply to: Max mega menu hidden #149384
     Radu
    Moderator
    Not marked as solution
    in reply to: iPhone “Take Photo” upload issue #149382
     Radu
    Moderator

    Hi,

    Please try to use this code : https://rtmedia.io/docs/troubleshooting/fixing-image-orientation-wordpress-uploads/

    The code can be added into functions.php file from child theme

    Cheers
    R.

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

    Great

    You’re welcome

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Home Food VS 4.0 Menu #149377
     Radu
    Moderator
    Not marked as solution
    in reply to: Revolution Slider #149367
     Radu
    Moderator

    I don’t understand your problem, please explain me in in a better way

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Blue line on forum #149366
     Radu
    Moderator
    Not marked as solution
    in reply to: Pages are not displaying correctly #149365
     Radu
    Moderator

    Hi,

    I haven’t change nothing on your backend.

    On this link : http://www.inhouserecruitment.co.uk/events/list/ i see this kind of layout with that spaces :

    I don’t know how should be, provide to me an example.

    I’ve asked you here https://archived.seventhqueen.com/forums/topic/pages-are-not-displaying-correctly/#post-148911 but you said no, so please tell me how should be displayed because I don’t know exactly what do you mean.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Issue with image title attribut and mouse over #149364
     Radu
    Moderator

    Hi,

    Just I’ve tested to see if the alt text and caption fields are ‘passed’ to the front end view and they are passed

    Can you please provide post URL where those should appear and isn’t ?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: MAIN PAGE DISPLAY #149363
     Radu
    Moderator

    The js file and css are already minified and you minify that once, this can be a cause

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: member activity page theme template #149361
     Radu
    Moderator

    Hi,

    I see that, from what I see this is default bp behavior for activity single posts, I’ve tried also with the default wp theme and the behavior it’s the same, so this is default BuddyPress behavior.

    Cheers
    R.

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

    Hi,

    The singles solution it’s to do this operation on parent theme file ( /wp-content/themes/kleo/assets/js/app.js ) see changes that you need to made below in screenshot

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Friend Requests and Notifications are Blank #149355
     Radu
    Moderator
    Not marked as solution
    in reply to: Search Page Results Don’t Display Correctly #149354
     Radu
    Moderator
    Not marked as solution
    in reply to: Revision option not available #149319
     Radu
    Moderator

    Hi,

    Try to add the below line to wp-config.php

    define( ‘WP_POST_REVISIONS’, -1 );

    Here are the supported parameters for WP_POST_REVISIONS:

    • true (default), -1: store every revision
    • false, 0: do not store any revisions (except the one autosave per post)
    • (int) > 0: store that many revisions (+1 autosave) per post. Old revisions are automatically deleted.

    references:
    https://codex.wordpress.org/Revision_Management#Revision_Options
    https://codex.wordpress.org/Revision_Management#Revision_Storage_Method

    Cheers
    R.

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

    Great

    You’re welcome

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Failed Logins #149313
     Radu
    Moderator
    Not marked as solution
    in reply to: Max mega menu hidden #149312
     Radu
    Moderator
    Not marked as solution
    in reply to: profile additions based on memberships and search/add #149311
     Radu
    Moderator

    Hi,

    1. There is no quick solution regarding to that or some plug and ply code, there should be created some restriction rules and also the theme templates should be rewritten in child theme

    2. There you can use a similar plugin to: https://wordpress.org/plugins/bp-portfolio/ but also you should made advanced functions to can achieve what you need, for publishing articles from the BuddyPress profile you can use this plugin: https://wordpress.org/plugins/social-articles/ , you can combine the functionalities of those plugins to achieve what you client needs

    3. Yes from wp-admin -> theme options -> header options -> Search menu location*

    4. Just create a new menu and assign it to the top in that you will add your custom links including the add listing link

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Captcha issue on pop up login form #149309
     Radu
    Moderator

    Hi,

    Please try with this plugin instead : https://wordpress.org/plugins/wp-recaptcha-bp/screenshots/

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Photo Membre Online #149306
     Radu
    Moderator

    Hi,

    I need to see your homepage first, provide admin credentials in a private reply please

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Edit Page Visual Composer issue #149304
     Radu
    Moderator
    Not marked as solution
    in reply to: Edit Page Visual Composer issue #149303
     Radu
    Moderator
    Not marked as solution
    in reply to: How to show age on profile site? #149302
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Just add this code to child theme functions.php

    COPY CODE
    
    function sq7_rdu_restrict_exception_blog_page() {
        /*check if is blog page choosen on wp-admin -> settings-> reading -> posts page.*/
        if(is_home()) {
            remove_action('template_redirect', 'kleo_restrict_site');
        }
    }
    
    add_action('wp','sq7_rdu_restrict_exception_blog_page');
    

    This will add as exception the page that it’s assigned in wp-admin -> setings-> reading -> posts page.

    In future we will fix this, until then use this function

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Ready to Develop APPs Personalization Add-On #149294
     Radu
    Moderator

    Hi,

    Thank you for the Sweetdate WordPress theme purchase but this website http://www.wpdating.com/add-ons/ it’s from another company, I don’t know about those services.

    Let me know how can i hep you regarding to sweetdate wp theme

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How can I put a google reCaptcha ? #149293
     Radu
    Moderator

    Hi,

    For the captcha use this plugin : https://wordpress.org/plugins/wp-recaptcha-bp/ it works with sweetdate and also with KLEo and for the seo you can use seo by yoast.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Media Grid Images Missing #149292
     Radu
    Moderator

    You’re welcome

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Media Player time #149291
     Radu
    Moderator

    Hi,

    Nice if you have solved and thanks you for sharing your solution with the rest of the members

    Have a nice day

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Slow Site #149290
     Radu
    Moderator

    No problem

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bugs and Issues #149289
     Radu
    Moderator

    Hi,

    Regarding to this:

    Using Buddypress XProfile Image Field i tried to uplaod an image in the register field, but it is not getting uploaded.[Screenshot: Tried_Uploading]. After selecting the image when I try to complete my sign up, I get a popup message like “This Is A Required Field”.

    If you will switch to default WordPress theme that will work ?

    Let me know

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Customizing Kleo Popup. #149287
     Radu
    Moderator

    Hi,

    For the sidebar customization you can use those selectors

    COPY CODE
    
    .sidebar.sidebar-right {background: red; color: green;}
    .sidebar.sidebar-right a {color:orange !important;}
    .sidebar.sidebar-right a:hover {color:aquamarine !important;}
    .sidebar.sidebar-right h4 {color:blueviolet !important}
    

    If you need any other selector let me know

    For the pop-up make sure to have same folder name and also the filename like in parent theme, this is the most common mistake when rewriting files in child.

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Enable chat option with friends #149286
     Radu
    Moderator

    Hi,

    For testing and inspecting what’s wrong with that code it require some time, since this isn’t a theme problem i cannot help you to make this work right now, i hope you understand

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: iPhone “Take Photo” upload issue #149284
     Radu
    Moderator

    Hi,

    Maybe the photo image size it’s to large than the server can accept at upload, if you will try with a small resolution image this will work?

    Also if you will enable wp debug during this operation what this will display? I will add the steps for enabling debug below.

    Steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Is there a way to do the following? #149281
     Radu
    Moderator
    Hi, 1. That can be achieved by copying this file : /wp-content/themes/buddyapp/buddypress/activity/entry.php to child theme in this path : /wp-content/themes/buddyapp-child/buddypress/activity/entry.php Then you should move the activity-meta div to your desired place : 2. There is no quick solution for achieving that also we don't have any plug and play code for that, ask about this on the BuddyPress forums. 3. Add this CSS to wp-admin -> theme options -> quick css
    
    .activity-inner iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: 460px;    
    }
    
    @media(max-width:600px) {
        .activity iframe {
            width: 100% !important;
            height: 100% !important;   
            min-height:250px;
            
        }
    }
    
    
    Cheers R.
    in reply to: timeline issue #149280
     Radu
    Moderator

    Hi,

    You have selected the correct timezone for the WP ? from wp-admin -> settings -> general -> Timezone ?

    Let me know
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: button alignment #149279
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Please take a look finally it should be ok now, I’ve used this CSS hack to make this work.

    COPY CODE
    
    .slotholder + .tp-parallax-wrap {
        visibility: initial !important;
    }
    

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Turkish Language Support #149096
     Radu
    Moderator

    Hi,

    That will be nice,

    Thanks you

    Have a nice week end

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Ready to Develop APPs Personalization Add-On #149095
     Radu
    Moderator

    Hi,

    I don’t know about this Apps Personalization Add-On it’s an addon for what plugin ?

    1. No, theme support not includes configurations and support for any other products than products from seventhqueen.

    2.There is no tutorial for that.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 8,481 through 8,520 (of 20,101 total)

Log in with your credentials

Forgot your details?