acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Shrink Slider Image SizesRead the docs and use the plugin mentioned above.
To change sizes open
functions.phpand find:
add_image_size( 'ac-slide-thumbnail', 515, 300, true );After you change sizes reactivate the theme and use regenerate thumbnails.
To make the slider show 3 posts you need to open
../assets/js/myscripts.jsand change
width = width / 2;towidth = width / 3;If you plan on updating the theme use a child theme.
As I said, this is custom work and I can’t help you more than that. You can hire someone to help you on jobs.wordpress.net
Forum: Themes and Templates
In reply to: [JustWrite] Shrink Slider Image SizesHi! Did you use https://wordpress.org/plugins/regenerate-thumbnails/. Also please read: http://www.acosmin.com/documentation/post-thumbnails/ before using it
Anyway it can’t be done, there are a lot of things to think about (custom work) and it might brake stuff. It wasn’t designed for those sizes.
Forum: Themes and Templates
In reply to: [JustWrite] reduce header heightTry disabling Speed Booster. It messes up with all css and javascript files, adding them in the footer.
Forum: Themes and Templates
In reply to: [JustWrite] reduce header height.top.logo-text { height: auto; min-height: 75px; }Forum: Themes and Templates
In reply to: [JustWrite] Removing date from postsOpen
../post-templates/content.php, remove:<time class="detail left index-post-date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time>Open
/post-templates/content-single.php, remove:<time class="detail left index-post-date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time>Forum: Themes and Templates
In reply to: [JustWrite] Slider crashedit might be cause by a caching/minify plugin.
Forum: Themes and Templates
In reply to: [JustWrite] Drop-down menuYour website’s url is?
Forum: Themes and Templates
In reply to: [JustWrite] Raw THML visible on author templateOpen
author.php, find:<?php echo esc_html( get_the_author_meta( 'description', $author_id ) ); ?>replace with:
<?php echo get_the_author_meta( 'description', $author_id ); ?>Forum: Themes and Templates
In reply to: [JustWrite] Slider crashedIt works on my end.
Forum: Themes and Templates
In reply to: [JustWrite] Drop-down menuPlease read the documentation, “Menus” section.
Forum: Themes and Templates
In reply to: [JustWrite] how to make theme more fastSorry, this isn’t a theme issue… You have at least 10-15 plugins activated and useless javascript/css files are loaded.
You can buy better web hosting or try to deactivate some of the plugins.
Forum: Themes and Templates
In reply to: [JustWrite] header banner problem in mobileThe only thing you can do is add/upload a logo separately, which will be centered in mobile view, also position those elements center in the background image.
It’s a lot of custom work and modifications. I am sorry but I am not available for hire at the moment. You can try http://jobs.wordpress.net/ or fiverr
Forum: Themes and Templates
In reply to: [JustWrite] Social buttons not showDocumentation, “Tips Hacks” section.
If it doesn’t work you are better off using any other social sharing plugins.
Forum: Themes and Templates
In reply to: [JustWrite] header banner cuts in mobileI don’t have an answer for this, you will need to experiment with it. The background image is set to be center positioned, vertical and horizontal. Header height is 220px. You can try 1800x220px…
Forum: Themes and Templates
In reply to: [JustWrite] Screen shifting left in vertial orientaton in mobileUsing a child theme or custom css plugin add this css:
.footer-credits .blog-title { word-break: break-word; }