Forum Replies Created
-
AuthorPosts
-
wensolutions
KeymasterHello @eziser,
Please check the mail for your follow up reply.
And if you have any theme related queries and need any help further feel free to post them .
Best Regards!!
wensolutions
KeymasterHello @akituya,
To place the menu items beside the logo use below given CSS.
For this go to Admin Panel > Appearance > Customize > Additional CSS and paste the given CSS.
div#main-nav { float: left; }Hope this helps.
Best Regards!!
March 29, 2017 at 8:05 am in reply to: How can I add related posts with thumbnails below blog posts? #37325wensolutions
KeymasterHello,
The feature you are requesting is not available on the theme and as much as we would like to help you we are not able to as, the theme doesn’t support this customization and 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.
wensolutions
KeymasterHello @ronalds141,
As we cannot access your website we could not inspect your problem properly .
But to manage the homepage at first you need to go to Admin Panel > Appearance > Customize > Static Front Page and set Front page displays to A static page . Now assign the page for the Front page and Posts page.
Refer to below screen shot :
http://image.prntscr.com/image/6858ed20e68c45519687243d7c30dee9.pngHope this helps.
If you have any confusion further please let us know.
Best Regards!!
wensolutions
KeymasterHello @eziser,
Steps to follow:
-First of all create the text document naming custom.txt and paste the js code with the help of text editor like notepad inside your child theme folder.
-Then rename the text file as custom.js and save it.
If you are finding it difficult to create the file replace above given code with code given below in your child themes functions.php file .
function photomania_pro_child_custom_js() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ $("a[href^=http]").each(function(){ if(this.href.indexOf(location.hostname) == -1) { $(this).attr({ target: "_blank", title: "Opens in a new window" }); } }) }); </script> <?php } add_action( 'wp_footer', 'photomania_pro_child_custom_js' );Hope this clears the confusion.
Best regards!!
wensolutions
KeymasterHello @eziser,
Please follow below given Steps.
– First of all in your child theme functions.php file include below given code .
add_action( 'wp_enqueue_scripts', 'photomania_pro_child_style' ); function photomania_pro_child_style() { wp_enqueue_script( 'photomania-child-custom-js', get_stylesheet_directory_uri() . '/custom.js', array('jquery'), '' , true ); }– Then create custom.js file in your child theme .
– Now add below given code in your child themes custom.js file .jQuery(document).ready(function($){ $("a[href^=http]").each(function(){ if(this.href.indexOf(location.hostname) == -1) { $(this).attr({ target: "_blank", title: "Opens in a new window" }); } }) });Hope this helps.
If you have any confusion further, please let us know.
Best regards!!
wensolutions
KeymasterHello @eziser,
To include the js code in the child theme you have to enqueue the js script in your functions.php file .
Your child theme functions.php should contain the below given code:
<?php add_action( 'wp_enqueue_scripts', 'photomania_pro_child_style' ); function photomania_pro_child_style() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',array('parent-style')); wp_enqueue_script( 'photomania-child-custom-js', get_stylesheet_directory_uri() . '/custom.js', array('jquery'), '' , true ); }Now create the custom.js file in your child theme and add below given code in the file .
jQuery(document).ready(function($){ $("a[href^=http]").each(function(){ if(this.href.indexOf(location.hostname) == -1) { $(this).attr({ target: "_blank", title: "Opens in a new window" }); } }) });Hope this clears up the confusion.
Best regards!!
wensolutions
KeymasterHello @james-salisbury,
The issue about the menu has been noted as known issue and we are currently working on this . We will be releasing the update fixing the issue soon and we will let you know.
For the quick fix we are providing some CSS code, so Paste the below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.
@media only screen and (max-width: 479px){ .site-layout-fluid #main-nav .container { width: 100%; } }Also to change the color of the widget please go to Admin Panel > Appearance > Customize > Color Options > Home Page Widget Color Options. Here you will find the options to set the color for different section in widget.
Hope this helps.
If you have any issue further, please let us know.
Best Regards!!
wensolutions
KeymasterHello @eziser,
If you want all of your external link to open in a new tab you have to include js code .
For this you can go through the child theme approach or add an external plugin.
Below is the link to one of the plugin :
https://wordpress.org/plugins/custom-css-js/
Then include below given js code .
jQuery(document).ready(function($){ $("a[href^=http]").each(function(){ if(this.href.indexOf(location.hostname) == -1) { $(this).attr({ target: "_blank", title: "Opens in a new window" }); } }) });Note: We cannot assure 100% compatibility of the plugin we have recommend to the theme as we have not tested the compatibility of the plugin to the theme .
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @safemintrain,
After the creation of child theme the value that we have set in the customizer of the parent wont migrate to the child theme.
So we would like to help you with some custom code.
After creation of the child theme in your child themes functions.php file paste below given code.
https://gist.github.com/anonymous/ecbec5c073978d36bb1c242d5316c99c
This will migrate the value you have enter in the customizer of parent theme to child theme.
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @randynit,
We are not much aware about the system you have mentioned or say any other systems so we are unable to help you on this .
But if you have any issue related to the theme you can always post theme by creating your own ticket in the forum.
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @akituya,
Can you Post your site URL so that we could provide precise fix on your issue ?
Hope you understand.
Best Regards!!
wensolutions
KeymasterHello @james-salisbury,
Thank you for contacting support.
Theme originally have no issue with accessing the menu in responsive view as you can also refer to this demo:
http://demo.wenthemes.com/wen-corporate-pro/
Therefore, we would like to request you to check and confirm this case by disable all the third-party plugins and enabling them one by one to distinguish any conflicting plugin.
Similarly the case of color option in customizer.
Secondly, if you have added any custom CSS then consider removing them to clean check those issues.
If still the problem persists, kindly revert to us.
Thanks
wensolutions
KeymasterHello @repsrpska,
To disable the visited link please use below CSS.
.site-title a, .site-title a:visited { color: #fff; }Now to remove the border please use below CSS.
td { border: none; }As for the recommendation, we have not tested any third party plugin besides the plugin recommended by the theme itself . So other plugin might conflict with the theme .
Hope this helps.
Best Regards!!
wensolutions
KeymasterHello @akituya,
To make all the menu appear in one line you must keep all the menu item align at the same level at backend .
For this go to Admin Panel > Appearance > Menus and create desired menu. Now place the menu items in the menu which you have created without dragging the menu item below the other item.
Refer to below screen shot for detail info:
http://image.prntscr.com/image/fd34b0bfb7c74f699b2b1f0101c8f585.pngHope this helps.
Best Regards!!
-
AuthorPosts





