1811 comments found.
How do I enable the top language menus? I installed WPML plugin and it just shows languages in the middle of the top menu. Where are the options for different language menu options?
Hello protektion,
Language switcher can be placed in supported widget areas. i.e. you can place it in header widget area or sidebar. If you have placed the language links manually inside top menu, kindly send me your site URL. I will check the styles.
Regards
Hello ziraell,
Checking in the validator, it seems there are some minor issues with custom markup which is being inserted in Home page.
For example, the image inside sidebar Text Widget has align=”” attribute which is not allowed. The searform is already used in header area. Using it again in sidebar causes duplicate IDs.
There are also a lot of inline CSS styles inside content area. Instead of using inline CSS, provide class names and then specify rules inside CSS file.
Regards
Hi,
I was wondering if it is possible to display the content of “Custom markup before the post” on the “Blog List Style” page i.e. blog-list.php
I have tried copying $ad_above = ( isset( $post_opts[‘ad_above’] ) ) ? $post_opts[‘ad_above’] : ’’; from single.php to blog-list.php but with no luck.
All the best Aaron
Hello Aaron,
“Custom markup” option works for single posts only, whereas the blog template pulls a collection of posts. If you wish to show custom content on blog template, you can place that directly inside the page editor. The code will show above all the post items.
P.S. For future support requests, kindly post comment from valid purchase account.
Regards
Hi,
I was wondering, (and is it possible) to create a Page, that “mimics” your NewsPlus Minifolio Plug-in, (or gallery page) that I can point to a category and its basically a page that only has thumbnails (without) the title?
On another point, can I add code to the rendering on Mobile, “to view the full site”, (as opposed to Mobile View only)?
All the best
R
Hello Ramy,
Image gallery can be shown using one of the available archive templates. For example, create a new page and assign a page template “Archive – 4 Col full width” to it. You can provide category IDs inside page options panel of this page.
After publishing the page, you will see a four columnar archive gallery with titles and excerpt. This title and excerpt can be disabled by adding the following rule inside style.css or user.css:
.page-template-templatesarchive-4col-php .entry-content { display: none; }
.page-template-templatesarchive-4col-php .entry-grid.col4 { margin-bottom: 0; border: none; }
For mobile view, we can only disable responsiveness via Theme Options > General. Currently, it can not be disabled at client side.
Regards
Hello,
It’s the second theme I bought from you and this is perfect for my work. I have a problem with the layout scaling: in smartphone view, main menu don’t collapse on a drop-down list and I see all 4 rows of categories in the header. Also: can you suggest me the best way to add “time” to the posts meta?
Thank you
Hello dbart,
Thanks for trusting my work and giving kind feedback. Kindly send me your site URL. I suspect this could be due to a caching plugin, or may be the responsive.css is disabled inside theme options.
For post meta, kindly let me know where you wish to show time. Post meta for single post is coded in functions.php, whereas meta in short codes is coded in shortcodes.php file.
Regards
Hello, the URL is: http://goo.gl/M4dDxO , there aren’t any caching plugins and the responsive.css is enabled into theme options. Can’t understand how to fix that.
About the post meta, thanks, I found and modified the codes in functions.php and shortcodes.php. How can I put them into the child theme?
Regards
Hello dbart,
The responsive menu is not appearing properly because main menu styles are copied in user.css file. user.css is loaded after all other CSS files, so it overrides previous styles. So if you copy all main menu styles in it, make sure you copy responsive styles too:
@media only screen and (max-width: 768px) {
.secondary-nav .sec-menu,
.primary-nav ul.nav-menu,
.primary-nav div.nav-menu > ul {
display: none;
}
.primary-nav {
background: transparent !important;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.primary-nav select {
display: block;
}
.menu-drop {
position: relative;
}
}
For post meta, you can copy both those functions inside your child theme’s functions.php file. They will override actual functions in parent theme.
Regards
Hello,
I would like to center the logo only in the mobile and tablet version version not in pc. How I can do it with css?
Hello oxin88,
Kindly add these rules at the end of user.css file:
@media only screen and (max-width: 768px) {
#header .wrap { text-align: center; }
.brand { margin: 0 auto 2em; }
}
Regards
I have added that code at the end of user.css but it doesn´t work. www.ocioon.com. Thanks for your attention
Hello oxin88,
It seems user.css is disabled on your site. Inside WordPress Appearance > Theme Options > General > Disable user.css file, make sure this option is not enabled.
If you wish to keep user.css disabled, add those CSS rules at the end of style.css file. It will work there too.
Regards
I tried both options but do not work. Enabled user.css with the new css at the end and inside style.css. Regards
Hello oxin88,
Kindly add these rules instead of previous ones:
@media only screen and (max-width: 768px) {
#header .wrap { text-align: center; }
.brand img { margin: 0 auto; }
}
Important: Copy the selectors as-it-is. There is a difference between ”#header .wrap” and ”#header.wrap”.
Regards
Perfect!! Thank you so much! Regards
Hi, Thank you for the great theme. Some questions, When I upload images size 800×533 it doesn’t resize properly on post pages and it shows image as 660×533 instead of 660×440 and I need to resize the image in Media Browser.
Another question is how can I insert Leaderbord Banner beside the Logo (728×90)
Thank you, Sinan
Hello Sinan,
Thanks for the purchase and kind feedback. For image resize in proportion, kindly add this rule inside user.css file:
img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"] {
height: auto;
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
max-width: 100%;
height: auto;
}
In order to insert a leaderboard banner, navigate to Appearance > Widgets > Default Header Bar. Inside this widget area you can use a Text Widget and place the banner code in it. This can be a simple img tag or a Google AdSense script.
Regards
Hello, One of my client interested to a theme like XING but he prefer NewPlus Layout but he just want to make sure whether he can insert the ” Welcome, Guest Login / Register” section to NewPlus theme (As same as Xing template has on the top-right corner) as he needs his clients to register online and shop for this website. Please let me know the possibility.
Hello webcart,
Thanks for browsing my themes. Login and register option can be enabled inside my account link in WooCommerce. This link can be shown in main menu or primary menu. If you need “Welcome Guest” and other such links, I will help with that.
Regards
Hi SaurabhSharma,
How to fix size of layout on homepage not keep moving up and down? I already changed picture size to be all same 600×400 but if headline is longer than 1 line, the whole web will move when that 2 lines head rotated article shown. Is it possible to fix this? So that it won’t effect user experience.
Thank you in advance.
Hello Pleng,
Inside slider short code, add a parameter as smoothheight=”false”.
[posts_slider smoothheight="false" .. rest of the parameters]
This will assign a fixed height to the slider. This will be equal to the height of longest slide.
Regards
Thank you SaurabhSharma but..where is the inside slider short code? ^^; I’m still new to wordpress.
Hello Pleng,
The slider shortcode will be inside your Home page. You can edit that inside WordPress Pages > All Pages > Home. Open / edit this page and switch to “Text” mode of editor. Inside page content you will see slider short code, which you can edit.
Kindly also send me your site URL. May be you are not using slider and the content is shifting due to some other reason. So I will check that too.
Regards
Hello! How can I add a picture in header for all size from left to right (~1000px)? Thanks!
Hello cosmins,
If you add a 100% width banner image, it will be required to remove header widget area. So you can follow these steps:
1. Upload your logo/banner of 1000px (or desired width) to media library and copy it’s URL.
2. Paste this URL inside Appearance > Theme Options > Header > Site name/logo settings, and also enable logo image checkbox.
3. Add this rule at the end of user.css file:
.header-widget-area { display: none; }
Regards
hi, this is a great theme i had purchase it today, . i hope you support me if i found trouble installing.. 
Hello darmasap,
Thanks for purchasing the theme. You can email me any time at xconsau[at]gmail[dot]com if you find any difficulty. I hope you will find the documentation helpful too.
Regards
Hi, I have to say this is a great theme!
Im having a problem. When I go to my homepage, or a blog post, it seems like the site never finished to load, I dont know why it seems to be so heavy.
I have Google ads on the blog and they sometimes do not show either.
Thanks in advance!
Hello LetsHalloo,
Thanks for purchasing the theme. Kindly send me your site URL. I suspect one of the widgets or custom markup is failing to load. This is a known issue with third party scripts like FB or Twitter.
Regards
Of course, sorry for the delay. My URL is www.codigocientifico.com. I have google adsense on the site as well.
Thanks in advance!
Hello LetsHalloo,
As I suspected, it is due to the social widgets inside sidebar. The slider is set to show after all window elements are loaded. So until the advertisements and FB/Google+ widgets do not load, it keeps showing loading icon.
The third party services like FB, Google and advertisements depends on the scripts which are hosted on their servers. These may take some time in loading. You can further cross-check by deactivating those widgets for a while.
Regards
Thank you so much for your help! I think I will change the slider because I cant get rid of the ads.
Thanks!
Hello I’m trying to put a Flickr slideshow in a post. However the height is not right, is always 150px. The code starts with <object width = “100%” height = “500” Can you help me please?
joel
Hello Joel,
If the code is inserted manually inside a post, there you can change the height=”500” parameter. If it is inserted via short code, there might be some parameter for height. So let me know how you are inserting the Flickr slideshow, and also send me your site URL. I will check it.
Regards
Hello Yes the code is placed manually. The height is 500 however the visualization is only 150 px height. Follow the link http://www.manhuacunews.com.br/galeria-flickr/ Thank you for your attention
Hello Joel,
The width=”100%” parameter is not working properly inside object code. So follow these steps:
1. Remove all width and height parameters from the object code.
2. Wrap the entire code inside a div with class name as embed-wrap>
<div class="embed-wrap"><object> - Your Flickr code - </object></div>
This will make the slideshow 100% width, and also responsive.
Regards
OK, it works! Thanks for the help. Congratulations for the work.
joel
You’re welcome, Joel.
Regards
Hi again
I’ve added a text box to the footer but the text is black, as opposed to the white I have it set as in the customization settings. Any idea why this is?
Thanks David
Hello David,
Kindly send me the site URL. I will check the text.
Regards
Beautiful looking theme….question – how does it handle posts with no image? I would like to use it as a news site and some may not have images. Thanks!
Hello nnyorker,
Thanks for browsing the theme. Featured images are optional. When no image is available, it will show only the post title and excerpt. i.e. the area with image will be occupied with text content. Similarly inside widgets having left aligned thumbnail, the content will expand to 100% width, replacing the image area.
Regards
Hi
I have a couple of extra questions:
Where do I change the ‘orange’ colour of the headings (I want a different shade of orange)?
How do I change the heading on the popular posts widget so that it looks the same as the other headings? i.e. coloured
Thanks David
Hello David,
1. For changing orange color of headings, add this rule at the end of user.css file:
.ss-label.orange {
background-color: #ff7600;
}
Next, change the value #ff7600 to other shade as required.
2. Widget headings are wrapped in h3 tags (automatically), whereas the headings in page content are wrapped in h3 + span tags. Since HTML is not allowed in widget headings, we can not directly get the same style. Most we can do is get the same font size and color. Kindly let me know if you wish to do that.
Regards
Thanks for that – but it hasn’t worked, and I’ve checked that my user.css file is enabled in the theme options. Is there anything else that I need to do?
David
Hello David,
Kindly send me your site/page URL in which you have placed the button. I will check the code.
Regards
Hello David,
The site is in maintenance mode. Kindly activate it, or send me a temporary login at xconsau[at]gmail[dot]com.
Regards
images in front pages are not the sema heigh for slider and some category. How to force cropping all images (featured, sliders, big slider, category) at the same size (width/height) ??
i just put “force cropping” on theme option and regenerated all media.. how to fix?
Hello zelatech,
Inside Appearance > Theme Options > Image Sizes > Post Slider Images, provide a width and fixed height. Do not use 9999 as height if enabling crop mode. For example, provide 600 for width, and 400 for height. Next, enable hard crop, save settings and regenerate thumbnails.
Important: If the original featured image is smaller than the width specified, it will not get generated. WP image resize works only for image sizes smaller than the actual image.
Regards
something doesn’t work.. for example “related post”
see screenshot: http://content.screencast.com/users/zelatech/folders/Default/media/f644f2cd-266e-4a00-b6da-4f36ff6f2e2b/05-11-2013%2011-46-14.jpg
i put twho red lines to show the problem
Hello zelatech,
Kindly send me your site URL and also mention what sizes you have specified for related posts.
Regards
Hi
I want to standardise different images in different areas of the site, e.g. the headlines section, the featured carousel.
I’ve seen the image sizes section of theme options but it isn’t that clear. Is there any guide as to which areas of the theme each category of image relates to, Two Columnar Grid Images etc?
Thanks David
Hello David,
Inside Appearance > Theme Options > Image Sizes, there are individual sections with headings. For example: “Posts Slider Images” is for slider. There are “One Columnar”, “Two Columnar” and “Three Columnar” image sections for 1, 2, and 3 cold grid styles respectively. The three columnar style applies to carousel too.
Similarly, “Small post image” applies to Recent/Popular post widget and smaller post lists.
Regards
Dear SaurabhSharma
Hi
Thanks for this great theme
I have just put some pics (Ads) on my side bar via text widget.
But I dont know how to link this images to the related pages inside my website.
Please Help 
Hello wowdesignuk,
Thanks for the purchase and kind feedback. Images can be linked using an anchor tag. For example:
<a href="http://yoursite.com/page/" title="your title"><img src="http://url-of-ad-image/" title="image title" /></a>
In the above code, change href=”” attribute to the actual page URL to be linked.
Regards
Thanks . wish the best for you.
You’re welcome. 
Regards
hello, i have missied the dummy home page file. can u pls send me the link to download. :’(
i would be even glad if u can help me in setting the home page please :)these are my login credentials.. i have mailed you the details with the subject as ””help needed for news plus theme”“
thaq so much in advance.
lots of love
K.S.TARUN