dimitris33
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] Your cart translation issuei am still trying to figure this out.I see that you have a folder in your theme ‘languages’ with various packs.When i select the greek language i can see the theme translated besides the ‘your cart’ on the top bar (even with the latest Woo).
shouldn’t the theme language pack be in the ‘wp-content/languages/themes’ folder?
what happens during theme updates?Thanks.
Forum: Themes and Templates
In reply to: [Virtue] Past versions2.5.7
Thank you.
Forum: Plugins
In reply to: [WooCommerce] Attributes in menuone problem i have is that i cannot use greek characters for the function
http://www.domain.com/pa_greek_letters/something
it would be nice for my permalinks, any way i can do it?
if i change the attribute permalink it adds another level
http://www.domain.com/changed-attribute/attribute-name/something
Forum: Fixing WordPress
In reply to: Share buttonit looks like its working now
Forum: Fixing WordPress
In reply to: Clean install but cannot access the Plugins foldersuper, you can mark the thread as resolved.
Forum: Fixing WordPress
In reply to: Images Not Showing In Media Library/Gallery after Uploading!@little jenni
it can be many things, you can theme updates or WP updates but always have a backup first.http://codex.wordpress.org/WordPress_Backups
Forum: Fixing WordPress
In reply to: Clean install but cannot access the Plugins folderHere you go https://codex.wordpress.org/Installing_WordPress
Forum: Fixing WordPress
In reply to: Clean install but cannot access the Plugins folderI cannot tell but i suggest you try the manual way, its really easy.
Forum: Fixing WordPress
In reply to: Clean install but cannot access the Plugins folderare you installing WP manually or with an automatic installer? try the latter.
Forum: Fixing WordPress
In reply to: Blue Box with Question Mark displaying instead of thumbnail imagesThere are automatic ways too and manual as the link i posted.
Forum: Fixing WordPress
In reply to: ExcerptYou will need to edit your theme and add some files.
1.create a child theme
2.copy your archive.php file from your parent theme to your child theme
3.copy the folder ‘template-parts’ from your parent theme to your child theme
4.rename ‘archive.php’ to ‘category-test.php’
5.open the ‘category-test.php’ and find this lineget_template_part( 'template-parts/content', get_post_format() );and change it to
get_template_part( 'template-parts/custom-content', get_post_format() );6.go to your child theme ‘template-parts’ folder and copy paste the file ‘content.php’, rename it to ‘custom-content.php’
7.edit it and find this codethe_content( sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title() ) );comment it like this
/*the_content( sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title() ) ); */and add below it this
the_excerpt();6.save : )
7.the test part in the filename ‘category-test’ should be the category you
want to targethttp://codex.wordpress.org/Child_Themes
https://developer.wordpress.org/themes/template-files-section/taxonomy-templates/Forum: Fixing WordPress
In reply to: How to navigate between manually added pages in WordPress ?If you created a php file and ‘made’ it a template you should be able to create a page in wp>pages and set it to that template thus you also have a url.
Forum: Fixing WordPress
In reply to: Mass resize of images and their thumbnailsmaybe you are looking for something like this?
Forum: Fixing WordPress
In reply to: Header Menu With No Pages?Super, you can close the topic if it’s solved.
Thanks
Forum: Fixing WordPress
In reply to: Home Page doesn't loadHi, i am not sure if you followed the Codex to move your site