Forum Replies Created

Viewing 15 posts - 5,836 through 5,850 (of 8,657 total)
  • Author
    Posts
  • in reply to: Jetpack galleries are not visible with Academic #46354
    wensolutions
    Keymaster

    Hello @alain17,

    When we have checked the gallery with the basic setting even with the Yoast seo the gallery seems to work fine .

    However we have not done compatibility testing with the plugin so gallery may not have worked while activating the Yoast seo plugin .

    Issue might have caused due to cashing issue also, we would to request you check your setting properly and verify the issue.

    Hope this helps.

    Best Regards!!

    in reply to: Jetpack galleries are not visible with Academic #46292
    wensolutions
    Keymaster

    Hello @alain17,

    If you have installed any third party plugins then please try disabling them and check the issue of gallery .

    Similarly for the slider section, you have to go to Admin Panel > Appearance > Customize > Static Front Page and set the front page display to A static page. Assign the pages for Front page and post page .

    Then go to Admin Panel > Appearance > Customize > Sections > Slider > Enable on and select the option Static Frontpage from the dropdown.

    Hope this helps.

    Best Regards!!

    in reply to: Jetpack galleries are not visible with Academic #46287
    wensolutions
    Keymaster

    Hello @alain17,

    As far as we have checked locally the gallery is working fine .

    Please post your site URL so that we could look further into the issue .

    Hope you understand .

    Best Regards!!

    wensolutions
    Keymaster

    Hello @dsteiner,

    Please once try by replacing the CSS we have provided with the CSS given Below .

    .three-columns-enabled #primary {
        width: 60%;
    }
    div#sidebar-secondary {
        width: 15%;
    }

    Also please do not directly change your original style.css file . You can place the additional CSS either in child theme or in Additional CSS field as mentioned above . In this way your original modification wont be lost .

    Hope this helps .

    Best Regards!!

    in reply to: Lost Home Page Link #46247
    wensolutions
    Keymaster

    Hello @kimmykool,

    After setting the Front page display to A static page, In your newly created menu add that exact Home page that you have choose to display the front page in Admin Panel > Appearance > Customize > Static Front page and save them.

    Screen shot :
    https://image.prntscr.com/image/Df-YGCUtQpew5H5aTAyy1Q.png

    Hope this helps.

    Best Regards!!

    in reply to: 2 Phone Numbers in the Header #46235
    wensolutions
    Keymaster

    Hello @cbhs-sacramento,

    The field to enter the phone and email is control through the customizer . And to change the setting require higher code customization . So if you want any other change along with this feature you can always consider hiring the customizer .

    To hire a developer please follow the link below
    http://themepalace.com/hire-a-customizer/

    Although we can even provide the quick fix to display the phone number through the use of java script . But you have to place the static phone number .

    To place the java script you can use plugins . Below is the link to one of them .

    https://wordpress.org/plugins/custom-css-js/

    After activating the plugin paste below given Js .

    jQuery(document).ready(function($){
    
    	$('.quick-call-info > .quick-email').remove();
    
    	$( '.quick-call' ).after( '<a class="quick-call" href="tel:56984">56984</a>' );
    
    });

    Here in the line

    $( ‘.quick-call’ ).after( ‘56984‘ );

    replace the no 56984 with your number in both the place .

    Hope this helps.

    Best Regards!!

    wensolutions
    Keymaster

    Hello @dsteiner,

    The right sidebar already has the width of 25% so the CSS we have provided will individually control the width of the left side bar as 15% and front widget area as 60% . We have provided the CSS targeting the secondary sidebar and front page widget area .

    Hope this clears up the confusion .

    If you need any assistance further please let us know .

    Best Regards!!

    in reply to: Edit Header #46233
    wensolutions
    Keymaster

    Hello @mickey261,

    The theme already has an option to display the Phone no. on the Top header .

    So the feature you are looking for is currently not available in the theme and as much as we would love to help with some custom code, this is beyond the support offered for our products.

    Our suggestion to you is to hire a professional developer for your customization, so that your theme will no be effected in any way.

    To hire a developer please follow the link below
    http://themepalace.com/hire-a-customizer/

    We hope it helps,

    Best Regards.

    in reply to: White line #46232
    wensolutions
    Keymaster

    Hello @james-salisbury,

    To remove the white border at the bottom of the widget use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .wen_corporate_welcome_widget {
        border-bottom: none;
    }

    Hope this helps.

    Best Regards!!

    in reply to: Author #46231
    wensolutions
    Keymaster

    Hello @james-salisbury,

    The theme has already provided an option to hide the date , author from an individual blog post .

    For this go to Admin Panel > Appearance > Customize > Theme options > Content Meta Options and uncheck the options to Show Date and Show Author .

    Hope this helps.

    If you have any confusion further please let us know .

    Best Regards!!

    wensolutions
    Keymaster

    Hello @dsteiner,

    As far as we have checked the CSS locally it is working fine.

    So please share your site URL so that we could look further into the issue .

    Hope you understand.

    Best Regards!!

    in reply to: Layout options with Flat Commerce #46176
    wensolutions
    Keymaster

    Hello @erniepope,

    For the personal use you may re-use the theme as much as you like .But if you are thinking of using it in a paid service then you must purchase one license for each site. Alternatively if you are not using for professional purpose then you can use the theme multiple time .

    Hope this helps.

    Best Regards!!

    wensolutions
    Keymaster

    Hello @dparker,

    Nice to know that your issue has been solved .

    We will release the update fixing the issue soon and let you know .

    Thank you very much for the co-operation .

    Best Regards!!

    in reply to: Event Manager #46141
    wensolutions
    Keymaster

    Hello @restaurant-ruble,

    To have the event look like in the demo you need to activate the Events Manager Plugin as recommended by the theme itself .Now create the events as per your requirements.

    Now create the page Event and place the widget Restaurant Featured: Event in the page . After this go to event edit option of the widget and place the id of the event that is created in the Admin Panel > Events .

    Refer to screen shot for clear info :

    https://image.prntscr.com/image/PPAWMvEYSTqp1GONiuVAtw.png

    https://image.prntscr.com/image/QsWtYy4KTAKD_WTGhYP-iA.png

    https://image.prntscr.com/image/ZbCeeCmlSK6PkxCEoUx0nw.png

    Hope this helps .

    Best Regards!!

    wensolutions
    Keymaster

    Hello @dsteiner,

    To adjust the width of the widget area use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    #sidebar-front-page-widget-area {
        width: 60%;
    }
    
    div#sidebar-secondary {
        width: 15%;
    }

    Hope this helps.

    Best Regards!!

Viewing 15 posts - 5,836 through 5,850 (of 8,657 total)