acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Featured Post DuplicatedIt’s a little late in my country, I will give you a solution tomorrow.
If you want to learn you can take a look here:
Forum: Themes and Templates
In reply to: [JustWrite] Featured Post DuplicatedThat’s how it works. You need to change the query to exclude them.
Forum: Themes and Templates
In reply to: [JustWrite] Problem with Child ThemeI really don’t know what you did. The exact same code works for me in a child theme.
If you don’t plan on updating the theme or make major modifications,you don’t need a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] SSL / HTTPS Mixed content and customizer issueI took a look and I really don’t think the problem is the theme. It uses all the requirements set by wp.org, doesn’t output any url, doesn’t include any raw url.
What you should do:
- Update all the links in your database to https, even for attachments, media…
- Find a new plugin to manage SSL, the one you’re using was not updated once in the last two years. I don’t think the Customizer was actually released in that period. There might be some problems there.
- Create a child theme and add the necessary modifications if needed.
Forum: Themes and Templates
In reply to: [JustWrite] How to put the normal text and the image by side.Hi! I am sorry but I don’t understand your question. Could you elaborate or post some screenshots?
Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Language TranslationYou can use Loco Translate with the .po files provided by the theme. You can find them in the
../languages/folder.Also go in your WP Administration Panel > Settings > General and at the bottom you should find Site Language. Change it to your desired language.
You should use a child theme.
Hi! Thank you for pointing that out. The problem is with a jQuery script, FitVids.js, which isn’t developed by me and is included in the theme to make videos responsive on mobile/tablets.
I don’t have a solution for it at the moment but I will try and fix it. The only thing you can do is to remove the script by opening
functions.phpand finding:
wp_enqueue_script( 'ac_js_fitvids', get_template_directory_uri() . '/assets/js/jquery.fitvids.js', array('jquery'), '1.1', true );replace it with:
// wp_enqueue_script( 'ac_js_fitvids', get_template_directory_uri() . '/assets/js/jquery.fitvids.js', array('jquery'), '1.1', true );Youtube videos should work just fine, the problem might be with embbeded flash videos.
Forum: Themes and Templates
In reply to: [JustWrite] How to remove or fix the browse bar?To disable the sidebar go in Customizer > Mini-Sidebar and select “Disable Mini-Sidebar“
Add a Menu part: in the same place add some titles for those menus, “First Menu – Title“, “Second Menu – Title”
Forum: Themes and Templates
In reply to: [JustWrite] Add Logo Full SizeI think you can download the zip file from here https://themes.trac.wordpress.org/ticket/24080 if you can’t wait…
Forum: Themes and Templates
In reply to: [JustWrite] Add Logo Full Sizeopen
category.phpand remove:<header class="main-page-title"> <h1 class="page-title"><?php printf( __( 'Category Archives: <span>%s</span>', 'acosmin' ), single_cat_title( '', false ) ) . ac_icon( 'angle-down' ) ?></h1> </header>I hope you’r using a child theme
Forum: Themes and Templates
In reply to: [JustWrite] Footerin the default
footer.phpyou can find:<strong class="copyright"><?php echo esc_html( $copyright_text ); ?></strong>and add your links in there. example:
<strong class="copyright">Copyright Mysite. <a href="link to page">About</a> | <a href="link to page">Contact</a> | <a href="link to page">Something</a> | <a href="link to page">Something</a></strong>Forum: Themes and Templates
In reply to: [JustWrite] w3 total cache and menu problemdid you empty w3’s cache after removing those lines? I tried w3 total cache with minify on, removed those lines and it worked just fine.
Forum: Themes and Templates
In reply to: [JustWrite] Can i to hide date and category showed on slider?Open
featured-content.php, find:<time class="date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time> <?php ac_output_first_category( 'category' ); ?>and remove them. Also use a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] Add Logo Full SizeI did a new header for the theme, it will come in the next update, in a few days. The header will resize based on the logo’s height.
It will be up soon, be patient please.
Forum: Themes and Templates
In reply to: [JustWrite] 3 columns? How?There isn’t much going on in that sidebar: 2 menus, archives and an ad. It’s also not widgetized, you can’t do anything more than that into it. If you don’t have a 24 inch screen you will still view those things, but not as a sidebar.
Also you need to be exactly above 1600px. If you want you can decrease the media queries. In style.css find:
@media screen and (max-width: 1600px) {replace 1600 to 1550 or something. Also in
../assets/js/myscripts.jsdo the same with:if( $(window).width() >= 1600 ) {I didn’t try it, see if it works. If you really need that sidebar you can always hire a freelancer and code the all thing again.