Discussion on 15Zine | Magazine Newspaper Blog News WordPress Theme

Discussion on 15Zine | Magazine Newspaper Blog News WordPress Theme

Cart 8,018 sales
Well Documented

codetipi supports this item

Supported

3025 comments found.

Hello!

How do you reduce the space between meta information and article content in posts? Example: http://i.imgur.com/t5liK4V.png

I have the following in my custom code section, but there is still a large space:

.cb-entry-header .cb-byline { margin-bottom: 0; }

.cb-entry-header .cb-post-meta { margin-top: 0; }

.cb-entry-header .cb-post-meta { margin-bottom: 0; }

Hey again :)

1- Sure thing, copy/paste the following code into your Theme Options -> Custom Code -> Custom CSS box:

.cb-fis-block-standard .cb-meta {  margin: 0 0 40px; }

And reduce the 40px value.

2- I may add an option to also have the sharing block at the top of articles (or both bottom and top), but until then, you would need a sharing plugin that adds its buttons to the top of the content.

I hope this helps.

Cubell

Thank you!

To be clear, I am able to add a sharing plugin to post pages. However, I would also suggest a way to add sharing buttons outside of the actual post, on blog archives and other places, so users don’t have to click into the article itself to share it. Example (Blog Style A): http://i.imgur.com/0DrtBPT.jpg

Applying this same functionality to the other Blog Styles would be super amazing!

Keep up the great work!

Hey again,

Ah I see! Some users have actually managed to do that, but I’m afraid you have to customize the theme code to achieve it. I may add an option for that in a future update though, thanks for the suggestion!

Cubell

Hey , I really like this theme , I wondering can I have a video header on the front page and could I have a video within the video grid layout ? Look forward to your reply

Hey Mr_kreative,

Thanks for checking out 15Zine and for the kind words :)

The only way to add a video embed in the homepage would be to put the video embed code inside a “Custom Code module” when building the homepage using 15Zine’s homepage builder. Or you could install a video gallery plugin that has a shortcode output, and copy/paste that shortcode into a custom code module to output that somewhere on the homepage.

And even though I can’t promise 100% it will happen, I am planning on adding more modules for the theme in the future, and may add a module where you can play videos from.

Hope this info is useful!

Cubell

Cubell,

How do you disable individual fields in the comments section? I would to get rid of the “Email” and “Website” fields to make it simpler for visitors to comment.

Hey Naheller,

The theme uses WordPress’ comment_form() function, and to edit it, you will need to edit the theme’s comments.php, or if you are familiar with WordPress filters (and are using the child-theme), you can easily override it with the ‘comment_form_default_fields’ filter.

Hope thi shelps.

Cubell

Hi, I can’t get the navigation menu to show. It appears in customize preview but when I save and publish it it doesn’t show on the site. When I go back to customize the dropdown menu is back at Select . I deactivated some plugins as I thought maybe something was interfering but no luck. Any idea what may be causing this? Thanks.

That’s great to hear :)

That is really odd, have you tried creating a new menu from scratch, it sounds like the one you are trying to assign may have a strange bug or something?

Cubell

After trying different things I simply uninstalled the theme and reinstalled it. That did it. Thanks!

Perfect, happy you got it sorted :)

hello, i want to buy this template. it’s very nice. i have only a question about cookies law, there is an update for this? let me know, thank you

Hi Mikychn,

Thanks for the kind words and interest in 15Zine.

I’m afraid I can’t really advise you on how to make your site comply with internet laws. But WordPress itself sets cookies and so do lots of plugins, so the best thing is to run a cookie audit on your site to see exactly what is setting what, and then write your cookie explanation page about them there and install a cookie law plugin to show a link to that page. The theme only sets 1 cookie in one specific situation: when a user clicks to leave a “user rating score” on a post that has a review with visitor rating option. When a user clicks on review score to leave a rating, a cookie is set with only one bit of information “user left rating: 1” (1 = true) so that the user can’t vote twice. That cookie literally only leaves has a 1 and is set to expire after 28 days automatically. There is no other data saved/stored in it. And if you don’t have reviews with the “user rating” option enabled, then the theme would not leave any cookies itself.

I hope this helps.

Cubell

hi cubell,

thank you for your explanation, it’s all ok

You’re welcome :)

Hello. How I can do smaller “search” window which shows when press on “search” button on the top menu?

Hey again,

The search modal is full-screen and is coded to be that width for the ajax posts to appear nicely, and there isn’t an option to make it any smaller, as it is responsive and adapts to the screen size, sorry I can’t be more helpful on this one!

Cubell

Hi there,

How can I switch from uppercase to normal (sentence case) in the posts category description?

Thanks,

Hey Nomadito,

Hope you are well buddy :)

Sure thing, copy/paste the following code into your Theme Options -> Custom Code -> Custom CSS box:

.cb-module-header p {  text-transform: none; }

Should do the trick ;)

Cubell

Works wonders. Gracias colega ;)

Seems I´m getting the the trick to finding my way through the .css file and replicating the little parts onto the Theme Options corresponding section. Have even managed to make that .cb-module-header p text less bolder, bigger size, and so on. Yaaay ;)

Less support questions for you Cubell.

Thanks as usual! Outstanding support!

You’re welcome, and you know I’m happy to help where I can :) Also, great job with the other custom css tweaks ;)

Thanks for all your help!

Is there a way to reduce the margins above and below the header logo image? Here is a like to my homepage: http://okpushplay.com

Hey again,

You’re welcome :)

Sure thing, copy/paste the following code into your Theme Options -> Custom Code -> Custom CSS box:

#cb-logo-box { padding-top: 20px; padding-bottom: 20px; }

And reduce the values accordingly.

Cubell

Hi Cubell – I’m just looking to see how I can override the automatic sizes of embed videos on all my posts? (http://freshframeofmind.com/top-5-song-discoveries-of-july-2014/) .. It is way to large and when I change the sizes nothing happens

Oops, link has a bracket at the end… this one should work: http://freshframeofmind.com/top-5-song-discoveries-of-july-2014/

Hey Frankglory,

Thanks again for choosing 15Zine :)

The theme comes with code to make videos responsive automatically (no shortcodes, coding needed, etc) to make it easy for everyone, as if it isn’t responsive, on mobiles it will overlap the layout and things like that can happen.

The only way to make a video not to make a video responsive is to give the video the ignore class:
fitvidsignore
So it depends how you are doing it, but if you are adding just YouTube URLs to your post, like this:
https://youtu.be/he4wA2l0a6o

Then you will need to click on the “Text” tab when editing the post, and change the urls to be like this:

<span class="fitvidsignore">
https://youtu.be/he4wA2l0a6o
</span>
That will make the videos not responsive. Just make sure you do it over 3 lines. Line 1 = span with class, line 2 = youtube url, line 3 = span closer.

I hope this makes sense and helps.

Cubell

Hello. I translated everything on russian, but item “views” persistently shows in English . In the file .mo translated all items including this one. How do I solve this problem?

P.S. Great theme, dude.)

Yes, I using v1.3.1. Now I have three problems which I wrote in support tickets. 1. Problem with “views” 2. Problem with style C in Archives 3. Problem with display Cyrillic words in the end of descriptions of articles I hope for your assistance conditional , because I myself do not understand how to fix it .

Most important is third problem. If first two problem I can allow with not disable views and dont choose style C, this cant be disable.

UPD: I think “MULTIBYTE LANGUAGE” give result in third problem. But not sure.

Hey again, I answered your tickets in the support system, and yes the Multibyte language option in the Theme Options is what fixes the little visual bugs in multibye characters (such as Cyrillic) :)

Cubell

Nice Theme!

Hey Marco66,

Thanks buddy, happy you like it :)

Cubell

Hey Cubell – you know I love this 15m theme – can the header be easily tweaked ? wanted to bring the height down a few notches.

Hey Seojimjames,

And you know I love that you love it :)

Sure can be, share your URL and I can take a look at what it looks like now and share the way to do it.

Cubell

Hey Cubell – you know I love this 15m theme – can the header be easily tweaked ? wanted to bring the height down a few notches.

It is covered with a splash page – so just need to tweak it to make it look a bit more streamlined.

Can it be done using custom code in child theme header customize ?

Ah I see! It’s very easy to do but it depends on your setup, so as soon as your site goes live, share the URL and I can take a look and share the specific and targeted CSS for you to add to your Custom CSS box in the theme options.

Cubell

hi cubell- how can you get rid of description of Category section below featured images? please let me know i SET as ‘BLOG STYLE C’. Please let me know how to get rid of descriptions below the feature images! thank you

Ah, it sounds like you mean the excerpts, and for only blog style c, you can use:

.cb-article-row-3.cb-blog-style-b .cb-excerpt { display: none; }

Hope this helps.

Cubell

This helped me a lot thank you cube!!

You’re welcome :)

Hi, lovely theme,looks simple but classic. Presale question; is it possible to have; 1. a breaking news plugin on the top of menu or place where we have ads? 2. Can it be use for sport focus news?

Regards

Hi Barnisayz,

Thanks for the kind words and for checking 15Zine out :)

1- Do you mean like a ticker? If so, the theme doesn’t have a ticker (as it has the trending megamenu to show popular posts), but I may add an option to put a ticker instead of the top menu on the left.

2- The theme can be used for almost any niche, its clean design and powerful options allow for this. All you need is nice images and good content and the site should look good :)

I hope this helps.

Cubell

Thanks, taught I clicked the email alert but found I didn’t. Ok, we are desirous to use your theme but in needof a breaking news/news-ticker with option to link to the post or not (not the news/gossip is confirm). Apologies, I didn’t notice 15zine doesn’t have a breaking news/ticker bar…

With regards

Hey again,

It’s no problem! But like I said, I might add a news ticker option to put put it on the top menu (left side) in an upcoming update, so if you are still interested in a few weeks, check the changelog at the bottom of the theme description page here on Themeforest to see if I was able to add one :)

Cubell

Hi.

I have purchased this theme but I cannot register for support. I’ve tried everything. It claims someone is already using my details.

I am desperately trying to get the import data to work – it imports the pages and posts but nothing to do with the e-commerce part. In fact I just cannot get the site to look anything like your demo of the shop here. The shop page iswildly messed-up.

I really need help please – frustrating not being able to get into the support.

http://andrew-elliott.co.uk/shop/

Hi Andrewmelliott,

I had a look on the support system and found a user with andrewmelliott as the username and registered with this email:

enq******@act*******.com

Is that your account?

And regarding your site, I had a look and it’s because you are using 15Zine v1.0, WooCommerce support wasn’t added until v1.2 and the theme is now at v1.3. Check the documentation of the theme and follow the steps in the “updating the theme” section to get it on the latest version and make it look like the theme demo shop.

Hope this helps.

Cubell

I am having an issue with the drag n drop page builder. I cannot get the featured image to appear on the home page. I have tried it with both the featured options section under the page and in the theme options.

Hi Twenty02si,

Homepages built with the builder are special pages, and as such they do not use the featured images right now, but I am working on making them work there in the next update, so stay tuned for that :)

Cubell

Hi Cubel, By Post Options i can Ignore Global Override Featured Image Style Setting. But by Page Options not, can you fix that in a next update? Or can you gif me a workaround to fix that?

Thanks!

Hi Marco66,

Thanks again for choosing 15Zine :)

That has already been fixed, and I can’t remember if it was included in v1.3. Are you on v1.3? If you are, it means it will 100% be fixed for v1.4, which is already in the works so won’t be long before it’s out :) If you need it soon, you can open a ticket at http://support.cubellthemes.com and I can show you how.

Cubell

Hi Cubell, can I make an archive video page with your theme? Similar to this: http://goo.gl/76PggL

Thank you, bye!

Hi Matthew11,

Thanks for choosing 15Zine. There isn’t an option for a video gallery like that, however, there are lots of great plugins to do that. And for functionality like this, it’s best to do it via a plugin. This is because if you ever change themes in the future, the video functionality will still work and not break because the code was inside your previous theme,

Check this page out for some examples of plugins: http://premium.wpmudev.org/blog/best-wordpress-youtube-gallery-plugins/

Hope this helps.

Cubell

Hello, I tried to register for an account on the support website and entered an email hosted at a private domain (avoiding those not recommended) but I haven’t received the email in several days and have tried a few times to get another sent.

Is there anyway you could help me out as I can’t register the product key again to try a different email address because it says that I have already used that key to register.

Thanks

Hi TCNBlog,

Thanks for choosing 15Zine, but that definitely isn’t right, you should receive the email within a minute. If you haven’t it means your hosting company automatically rejects “spammy” looking emails. And as the email is an automated created email, it is considered spammy (lots of spammers use WordPress sites to send out bulk spam emails).

I found your account though and manually reset your password and sent it to the email registered in that account. Hope it helps!

Cubell

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey