Support only during business hours : Monday to friday, from 8:30 am – 5:30 pm CEST

Due to the decrease in our staff due to vacations, our response time may be longer.

Be sure we're doing our best to manage your topic as soon as possible.

Having Trouble with media upload and media page

This topic is resolved
Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    Hi,

    I’ve setup my site using gwangi sensual theme on millennialzmeet.com

    after login ==> when media showing me 404 page not found error

    after login ==> while uploading media in it stuck or auto posted without clicking post update and privacy dropdown also not working you can check all these issue by login in

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus
    This reply has been marked as private.
    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @cnpandya,

    We can’t reproduce your issues.
    We don’t have any 404 errors, the privacy dropdown functionality works well and the upload media feature works well too (cf. screenshot).

    On the other hand, we also noted 2 important points:
    – You have installed the “ultimate member” plugin. Even if this is not a bad plugin, it has features in common with BuddyPress. This could cause problems in the long term.
    – I think you don’t have the latest version of the Gwangi theme (Gwangi parent = v1.1.7 and gwangi Sensual child theme : = v1.1.4), we advise you to update these two themes.

    Best regards,

    Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    May be that was my mistake or i m not sure this were working after installing ultimate members plugin i’ll check with this.

    Thanks for the support

    Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    other thing is if i remove ultimate members can i able to replace your home hero search form with only 2 buttons for register and login for logged out users only and if user logged in those button should be hidden

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @cnpandya,

    To make sure we understand your request, can you please confirm that you wish to display:
    – a “Register” button pointing to your register page;
    – a “Login” button pointing to your login page?

    Also, can you please confirm that these two buttons should only be displayed when the user is not logged in?

    If OK, we can provide you with a short code snippet you will need to paste in your Customizer.

    Regards,

    Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    Thankss for the reply

    Yes Register and login buttons will redirect to their respective pages

    Register ==> https://millennialzmeet.com/register/
    Login ==> https://millennialzmeet.com/log-in/

    I want those buttons only for logged out users either buttons will hidden for logged in users or user pic & username can only display in place of those buttons to link to profile page(if possible) for logged in users only

    Please provide snippet if possible and let me know if i can modify in future for any changes in it so it will not bother you each time

    Thanks

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @cnpandya,

    To create the loggedin/loggedout feature, simply add the following code snippet to your website:

    function check_user_logged_out ($params, $content = null){
      if ( !is_user_logged_in() ){
        return $content;
      }
      else{
        return;
      }
    }
    add_shortcode('loggedout', 'check_user_logged_out' );
    
    function check_user_logged_in ($params, $content = null){
      if ( is_user_logged_in() ){
        return $content;
      }
      else{
        return;
      }
    }
    add_shortcode('loggedin', 'check_user_logged_in' );

    To add this code snippet to your site, we recommend that you use a the Code Snippets plugin (https://wordpress.org/plugins/code-snippets/). If you have never activated this plugin, please read the following post:

    Adding Custom PHP Without Changing Your Child Theme

    Then you can add the buttons in your Hero text field (WP Customizer):

    [loggedin]Content for logged-in users only[/loggedin]
    [loggedout]
    Content for logged-out users only
    <div class="mt-3">
       <a href="https://millennialzmeet.com/register/" class="btn btn-primary mr-2">Button one</a>
       <a href="https://millennialzmeet.com/log-in/" class="btn btn-secondary">Button two</a>
    </div>
    [/loggedout]

    We hope this will help you. ?
    And don’t hesitate to ask more questions, you don’t bother us at all!

    Best regards,

    Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    Hi Thanks for the snippets it working fine

    i am wondering how can we display a logged in user’ dp and username only with link their respective profile page ?

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @cnpandya,

    We’re not sure to understand what you’re asking.
    Can you please provide us with annotated screenshots of your website? Please don’t hesitate to highlight your screenshots with arrows or rectangles to help us better understand your request.

    Thank you in advance.

    Best regards,

    Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    related to your reply #2667

    u gave me code snippets for separate content to logged in and logged out users,

    for logged in users can i put logged in user’ icon and username with link to navigation to profile page

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi @cnpandya,

    OK, understood. The following snippet should do the trick:

    [loggedin]
    <div class="mt-3">
       <a href="https://millennialzmeet.com/members/me" class="btn btn-primary"><span class="fa fa-user mr-2"></span>My Profile</a>
    </div>
    [/loggedin]

    We hope this helps.

    Best regards,

    Cpandya
    Participant
    • 2 Topics
    • 11 Posts
    @cnpandya

    @#2676

    Thanks it works. Thanks for support will tell if any other support needed

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    You’re welcome @cnpandya. ?

    Best regards,

Viewing 14 posts - 1 through 14 (of 14 total)

The topic ‘Having Trouble with media upload and media page’ is closed to new replies.

Troubleshooting Demo Imports

You're trying to setup your theme but you're experiencing errors when importing the demo content? Or you've just followed the setup guide but your website doesn't look exactly like our demo? These are common issues for which you can find easy and quick fixes.

Happy With our Support So Far?

Feel free to review our theme on Themeforest! It helps us making our products more known to new potential customers, which allow us more time to improve the quality and develop new features. #SharingIsCaring ❤️

Discover MatchPress

Skip • Like • Super-Like

Add powerful matching features like Member likes, skips, super likes, conditional private messaging and much more.

Setup Your Cera or Gwangi powered Community Website and Turn it into an iOS and Android App

15% discount for Cera users

To unleash the full power of your Cera or Gwangi theme, we have partnered with the Zipline team. Your community website can now be fully setup and turned into your very own custom app for iOS and Android.

Whether you've newly acquired the theme or already got your site up and running, Zipline got you covered. And we got you an incredible discount.

Holiday, Weather & Festive effects
to pimp your WordPress Site