160 comments found.
Hi, thank you for your message regarding the right hand sidebar. i have removed the widgets from the primary sidebar, where do i add the ad widget too in order to enable it to be displayed on the right hand side?
thanks
Dont’ worry all fixed 
Hi, is possible to diable the load more link at the bottom of the page so that all posts are automatically loaded?
Thanks
Lucy
It is not possible to enable infinite scroll in the theme currently. You may try third-party plugins for this purpose.
Hi there,
I am wondering if there is a way to feature the category and author’s name and date in a byline style at the top of a post.
I would like it to show the category, the by Author, then date. For example: Cope by Kristen Domonell 1/14/16 (like this: http://dailyburn.com/life/tech/best-podcasts-healthy-living/)
In addition, I noticed there is an author.php file include, but I’m having trouble figuring out how to access author pages. I am hoping that it’s possible to customize author pages with photo and bio and that it will include all of their work.
Let me know and thanks in advance!
Kristen
Hi! Please install this child theme http://themeous.com/wp-content/uploads/maxi-child.zip I’ve customized it to include the category, author’s name and date at the top of the post and added the link to the author’s page when you click on the author’s name.
For the author page, you may use this plugin https://wordpress.org/plugins/meks-smart-author-widget/ to show the author info and avatar in a widget. You may place it in Author Sidebar widget area to display on author pages only.
Thanks so much! This is just what we were hoping to be able to do. However, the category/author/date appear above the post title. Is it possible to move this below the post title like in the example provided?
Additionally, I installed the meks plugin, but when I activate it in the Author Sidebar widget area, it does not show up. I Played around with adding other widgets to see if it was a problem with the widget I installed, but no others show up either. It appears to be a sidebar issue, not a widget issue.
Hi!
Thank your for the bug report, please download this file http://themeous.com/wp-content/uploads/sidebar.zip, unzip it and replace sidebar.php file in the main theme. I’ll add this fix in the next theme update.
In regard to the post info, please download the modified child theme http://themeous.com/wp-content/uploads/maxi-child.zip
You may remove the previous child theme and install the new one, or replace custom.css and /inc/post-header.php file in a previous child theme.
You rock! Thanks 
I noticed that my logo doesn’t appear responsive on mobile. It tucks underneath the hamburger menu. Is there a way that I can fix this.
www.nctdnewscenter.org.
Hi!
You may add the following style in your custom CSS
#logo {
margin-right: 4.236em;
}
When i want make updates in the events, the options arent the same. I just can update the name. How i can see the cmplete information to make de updates?
Hello! Please, provide some details. Which plugin do you use for events? Could you provide some screenshots?
Hi, how do you prevent the same stories appearing multiple times on the homepage?
Thanks
Hi! Could your please provide your website url? Does it happen when you display all recent posts on the homepage, or when you add Flexible Posts Widget blocks?
Hi, the wesbite is http://www.rdemembers.com/ i am using the flexible post widgets on the sidebars and sepcifying the id’s of the posts to include in those. But in the middle column it seems to be displaying all posts so the posts are duplicating in different areas
thanks
You may use this plugin WP Exclude From Homepage https://wordpress.org/plugins/wp-exclude-from-homepage/ to exclude some posts from the main query.
Hi, the plugin works great for the page. however i don’t want the items in the slider to be displayed on the page either as they are then duplicated. Using the exclude from homepage plugin removes the stories from the slider
Thanks
You may add the following code at the end of functions.php file. You may use the child theme (recommended) or the parent theme.
function maxichild_homepage_posts( $query ) {
if( $query->is_main_query() && $query->is_home() && !is_admin() ) {
$post_query = array( '1000', '1001' );
$query->set( 'post__not_in', $post_query );
}
return $query;
}
add_action( 'pre_get_posts', 'maxichild_homepage_posts' );
‘1000’, ‘1001’ are IDs of the posts you wish to exclude from the homepage. I’ve tested this, it works fine with the slider and flexible posts widgets.
Hi, this seems to work when i tested it with two posts. If i try and enter more post id’s though e.g. $post_query = array( ‘6146’, ‘6142’ ‘6148’ ‘1’ ‘6160’ ‘6163’ ‘6188’ ‘6190’ ‘5780’ ‘5869’ ‘4821’ ‘4932’ ‘13’ ‘4943’ ‘4860’ ‘5874’ ‘5695’ ‘11’ ‘6197’ ‘6115’ ‘6200’ ‘6203’ ‘6214’ ‘6244’); i am just given a white screen?
Thanks
Lucy
Hi! You should use a comma ‘1000’, ‘1001’, ‘1002’, ‘1003’ etc
sorry my mistake, works perfectly. Thank you so much 
You are welcome 
Hi, would you be able to tell me how i can get the posts on the right sidebar to be displayed as you have in your demo. With the large image and the title and small paragraph of text?
Thanks
Lucy
You should install Flexible Posts Widget plugin https://wordpress.org/plugins/flexible-posts-widget/ and select Large Thumbnail with Excerpt Layout for it.
Hi, i have set the option to Large Thumbnail with Excerpt Layout, however my right hand column looks different to yours?
http://www.rdemembers.com/I couldn’t see your website because of Coming Soon plugin enabled. Could you please provide me with a screenshot? Do you mean this posts https://monosnap.com/file/he4boA2fMDGN9FIjqTBLcDYZVBsLsx
In this case it is not a sidebar, it is a fullwidth layout without the right sidebar. If you remove widgets from the primary sidebar widget area, fullwidth layout will be enabled.
Hi, first of all, good work. Second, I have some issues.
When I add the “Flexible Posts Widget” to the “Homepage Horizontal Header” with the “Magazine 4 Columns Dark (Horizontal) template the design of the container is broken, by meaning that it is to large, some 2.618em. I have also tried to placing the “Flexible Posts Widget” in the “Newsticker”. Their it works.
Then is it possible to have the “Sticky Menu“ option also for the mobile versions?
I use a child theme and the webpage is not online, just in development.
Thank you
Hi!
Thank you for your purchase!
This blocks are not designed for the header widget areas, however you may add this quick fix in your child theme custom.css file.
.horizontal.before-wrapper .widget .magazine-grid {
padding-bottom: 0;
}
I think the 5 columns layout without excerpts would be better for the header, I’ll add this layout in the next theme update.
In regard to the sticky mobile menu, I’ll work on this.
I will provide an update within a day.
Thank you for your fast reply. The problem with the padding is on the right.
In this case you may try the following
.horizontal.before-wrapper .widget .magazine-grid {
padding-bottom: 1em;
}
.horizontal.before-wrapper .widget-title {
padding: 0;
top: 0;
}
.horizontal.before-wrapper .widget .magazine-grid .grid-item {
padding-right: 0.8em;
padding-top: 0.8em;
padding-bottom: 0.8em;
}
.horizontal.before-wrapper .widget .magazine-grid {
margin-right: -0.8em;
}
@media only screen and (min-width: 40.063em) {
.horizontal.before-wrapper .widget .magazine-grid .boxed {
margin: 0 0.8em;
}
}
The updated theme is available for download here http://themeforest.net/downloads
It provides mobile sticky menu option (you may enable it in Appearance > Customize > Header section).
Also I’ve added 6 columns layout for Flexible Post widget and extra widget area before header menu.
Styles from my previous message are included in the update too (I’ve improved them a little bit).
Hi I have installed your theme and all relevant plugins but can’t find: Advanced Custom Fields Pro – which one shall I use? Thanks
Is it: Advanced Custom Fields Repeater & Flexible Content Fields Collapser?
Hi!
You may find this plugin in the list of recommended plugins in Appearance > Install Plugins section. Just click Install near the plugin’s name. If you unable to install the plugin in this way, you may upload advanced-custom-fields-pro.zip directly from /maxi/vendors/plugins folder on your computer via Plugins > Add New section.
If you installed Easy Foundation Shortcodes plugin from WordPress Repository instead of the plugin version provided with the theme, you should disable plugin’s styles and javascript in Easy Foundation Shortcodes settings, because this files are included already in the theme.
Advanced Custom Fields Pro is a premium plugin, it is provided with the theme, however you may download the Lite version from WordPress Repository https://wordpress.org/plugins/advanced-custom-fields/
It is compatible with the theme as well, the only one limitation is that galleries are not available in the Lite version. It is possible to update the Lite version automatically. I provide new versions of Advanced Custom Fields Pro when I update the theme, but you should update it manually by removing the plugin and installing it again.
Fantastic help all sorted thankyou. One last thing is there a custom CSS area or do I need to create a sheet and link it myself through ftp
You may install this simple plugin for custom styles https://wordpress.org/plugins/simple-custom-css/
Thanks again, great service and theme
Thank you! 
Hello: pre-sale question does the link post can have a featured image? or in the content? thanks
Also, can we decide which areas to show and hide, for example disable the top sliding headlines?
Hi! Thank you for your interest in my theme!
Yes, you may add a featured image to the link post, please, take a look at the screenshot for example http://take.ms/E7d6f The featured image will be visible for single link post as well.
You may disable the main post slider on homepage and Newsticker at the top of the site, also you may select different layouts and posts for the footer blocks or disable them completely.
Hi, there is no template in your theme. Now, in my website I want to display posts which are followed by user in profile page. I have created one template “profile” and created “profile page”. If I filter query and display only particular post, my pagination doesn’t work. On every page it shows first 10 posts only.
How can I make template and filter query using query_posts( $args );
Below is my website link: http://bit.ly/1NYSig6 Profile page link : http://bit.ly/1PAxwrK second page link: http://bit.ly/1OoxaUeThese both profile page link shows same set of posts.
Hi!
It would be helpful if you provide your code screenshots.
If you wish to query posts with pagination, your should add “paged” parameter https://codex.wordpress.org/Pagination#Adding_the_.22paged.22_parameter_to_a_query
author.php file is used to display posts created by the user, probably your should add your query in this file, if you wish to display this query in user profile.
TOPIC: social sharing icon on each post
Hi! love your theme, but is wondering if the social icons will show when I view from my iphone. It seems that these icons are sacrificed when the browser is iphone width.
please kindly advise:)
tks Cher
Hi! Thank your for your interest in my theme.
Currently social share icons are disabled for mobile devices, but I may add mobile share buttons as an option in the next theme update within a few days.
How to setup Left side bar on the Home page and the category pages? Please let me know.
Hi! Thank you for your purchase!
You should place any widget into Floating Left Homepage Sidebar and Floating Left Category Sidebar widget areas.
Please see the screenshot http://take.ms/60Omq
hey buddy you ever have the time to look into making news ticker and/or slides auto update? for example. set for like day, week or month, or category, random, lastest x posts…something like that lol
id prefer the ticker over the slider, but both could be nice _
Hi! I remember about your request. The updated theme version with this feature will be released tomorrow.
sweet, you the man buddy 
You may download the updated theme here http://themeforest.net/downloads
Place Flexible Posts Widget in ‘Newsticker’ widget area and select Newsticker layout for it.
Use ‘Homepage After Main Menu’ to add Flexible Posts Widget with Carousel or Slider layout. Disable the default slider in Appearance > Layouts section.
Also I’ve improved compatibility with bbPress, you may use bbPress widget area to add widgets on forum pages, otherwise fullwidth layout will be used.
thanks for update
few quick things…i install child theme due to custom crap on my page https://www.xataclysm.com/ now everything seems fine had to play with widgets but np…but i dont seem to get this “newsticker” widget area. and is the simple template for the ticker…and if i remove widget from side of forums i still get i gotta add widgets memo there…do i need to remove old theme and install new? figured child would be fine…
Yes, you should remove the main theme and install the new version in order to see Newsticker widget area and other updates. Your changes in the child theme will be safe.
You may use bbPress widget area for forum pages (available in the updated version). If it is empty, fullwidth layout is used.
i gotcha
thanks again buddy
ok…
one more thing..lol everything is there and working but.. https://www.xataclysm.com/ if you look at the ticker, youll see dates and not the post title till hover. i guess its my font color but that goes with site…how can i change font color of ticker so to see post title? figure its just simple css but idk
Please try to empty CSS cache. I’ve tested it on the demo website, custom colors apply correctly.
i have…i believe its due to my font color being red, while my ticker bar is red also…thus making font unseen till hover…if you go to my site youll see what im talking about…
Try to add this style in your child theme custom.css
.dark .widget a {
color: #fff !important;
}
you good buddy…ill just make back with red hov 
thanks again for all your hard work and help
You are welcome! 
Hi! I bought the theme Maxi. I need support. Where can I create a ticket? My questions: 1. How to disable sidebar on the main page? https://yadi.sk/i/B5MBGct6mEcs2
2. How to manage (add, rename, change content) of these segments on the main page? https://yadi.sk/i/JSdcL3vlmEcvdHi! Thank you for your purchase!
1. You should remove any widgets from Primary Sidebar widgets area.
2. Please check Flexible Posts Widget in Footer Homepage Horizontal widget area, you may select posts by tags, categories, post formats, select different layouts for this widgets, add new blocks or removed them completely.
I provide support in the theme comments, but also I speak Russian, you may contact me by email ask@themeous.com, unfortunately Cyrillic is not supported in Themeforest comments.
I am having trouble putting the 2 rows carousel in place. The 1 row works fine but I would like to have as it is in the demo. http://www.nctdnewscenter.org/
Hi!
Thank you for your purchase!
As I could see the two rows carousel is enabled currently on your website, but you should regenerate thumbnails to make it more accurate.
The recommended image size for featured slider is at least 600px in width and 600px height, if your original images are smaller, you should install Thumbnail Upscale plugin https://wordpress.org/plugins/thumbnail-upscale/ and then regenerate thumbnails with Force Regenerate Thumbnails plugin https://wordpress.org/plugins/force-regenerate-thumbnails/Two rows carousel is replaced with simple one row carousel for mobile devices.
Please, let me know if it helps.
Hi, Is there a way to prevent the slider on the homepage from sliding automatically? So it only slides when the user click on the navigation arrows
Thanks
Lucy
Hi!
Yes, it is possible.
You should changeautoplay:true,to
autoplay:false,
in /js/settings.js
Please, see the screenshot http://take.ms/U82E1
If you use a child theme, you may edit this file in your child theme, so you will be able to update the main theme in future without losing this modification.
Please, let me know if you need help with file editing or installing a child theme.
quick question buddy…need to make drop menu a little longer. i can fit 12 subs but last one kinda cut short…how to make drop menu tad longer? rather just ask than “play” with css..lol 
Hi!
If you use a child theme, you may copy header.php in it and change the code like on the screenshot http://take.ms/5vMAc
If you do not use a child theme, you may add this style at the end of style.css or in a Custom CSS with the help of a plugin like this one https://wordpress.org/plugins/simple-custom-css/
@media only screen and (min-width: 64.063em) {
.header .large-3 {
width: 16.66667%;
}
.header .large-9 {
width: 83.33333%;
}
}
Probably you will need to adjust the percentage in order for the logo to fit.
This helps if you wish to change the width of the main menu, however if you have the issue with a drop-down menu itself, please provide the url to your website, it seems to be some kind of a bug, because the vertical length of the drop-down menu is not limited.
yeah its the drop down length…https://xataclysm.com/ if you see gaming news…the drop cuts short..
Thank you! I’ve found the issue. Please add this code in your styles
@media only screen and (min-width: 64.063em) {
ul.main-menu li:hover ul.sub-menu {
max-height: 40em !important;
}
}
I will add this fix in the next theme update.
ok buddy thx _
hey if you doing updates…you think you could look into making news ticker and/or slides auto update? for example. set for like day, week or month, or category, random…i get auto posts from feeds right, and then i have to set what i wanna show in slide or ticker, then do same to remove post…would be nice if one could set it to pull defined date range or something and rotate posts… if that makes sense?
I may create some extra custom templates for Flexible Posts Widget plugin, so you may select different posts based on category, tag, post format, or just display some number of recent posts, however it would be possible for Newsticker and Simple Carousel Slider, not for Two Rows Carousel. It could be done at the end of the month, I’m pretty busy right now.
sounds good to me _
I will work on this
Will let you know when it’s ready.
me again
ok, i seem to have bbpress issues…like widgets…cant add any…cant remove sidebar… https://xataclysm.com/forums/ see what im saying? when i go to widgets theres no way to add,change, remove bbpress/forum widgets… got another magic code buddy? 
Officially the theme isn’t compatible with bbPress currently. It provides some basic styles only.
You should add widgets into Archives Widget Area for Forums page and into Post Sidebar Widget Area for a single Forum, this should work fine.
In order to remove single post meta at the end of the forum page, you should replace content.php file in your theme with this file http://themeous.com/wp-content/uploads/content.zip (please, unzip it first).
hey buddy:) before adding content.php, just wanna clarify whats it gonna do
id like to make thing simple and just remove side bars from bbpress and make fullwidth or something like that
Sidebars will work fine if you use recommended widgets areas. If you replace content.php some unnecessary icons and share buttons at the end of forum pages will be removed.
you’re awesome buddy..thx
Hi, I buy your template, i want create similar slide in the header of site like you example, but i can´t make it, how i have to do it? Otherthink, how i do to make the menu alway on top when i do scroll like your example?
I await for response. Seee you
User envato: turcogab site: santiagociudad.com
Gabriel
Hi, Gabriel!
Thank you for your purchase!
As the first step you should install Advanced Custom Fields PRO plugin, you may find it in the list of recommended plugins in Appearance > Install Plugins section.
Then you should enable the slider in Appearance > Customize > Layouts section. Please see the screenshot http://take.ms/RffBK
Then when you edit a post, you should check ‘Show in Slider’ option, if you wish to display this post in the slider. The minimum recommended featured image size is 800px.
If you wish to display the Newsticker at the top of the site, you should check ‘Show in Newsticker’ option when you edit a post. Please see the screenshot http://take.ms/CgQ5N
Also you should enable the Newsticker in Appearance > Customise > Header section.
For sticky menu, you should enable it in Appaerance > Customise > Header section too.
For details and screenshot you may view the theme documentation, you may find it in the /Help/ folder in files you’ve downloaded from Themeforest, just open index.html file with any browser.
Hi Guys, I have aligned on center all my pictures in posts, but some looks centered and some appears in the left, can you help me? here you can see an example http://www.casamultimediale.it/2015/11/ruark-mr1/
Hi!
Thank you for your purchase!
Please, add this code at the end of style.css file
img.aligncenter {
display: block;
}
I’ll add this fix in the next theme update in a few days.
It works! thanks
Hello could you help me again with two problems
1. Quote posts are not shown in the standardscreen of the page
2. I what to use the favorties plugin but now cap drop doesnt work ! can you make that favorties function to the theme in next versions so that users can make there own favortieslist via cookies or fix that for me so i can you that plugin but it would be better if the theme has the function
I hope to hear from you soon
Lukas
