585 comments found.
Hi, I need to change the date of the blog (Spanish), and changed the months and days locale.php file, however I need to find the line of code “the_time (‘F jS, Y’)” to change it to <? php the_time (‘j \ d \ e \ F \ d \ e \ Y’);?> I hope this works. What file and line I can change the date to Spanish? ..
Good work, thanks
Hi! It is line 144 (or some near it) in template-blog.php with the code date(‘M.d’, strtotime($post_date). If you change it to <? php the_time (‘j \ d \ e \ F \ d \ e \ Y’);?> should work fine! But pay attention very long date will not be displayed correctly in case of design features.
the solution was the number format date (‘d. \ m. \ y’) so far no problem with the design, so I changed in template-blog.php and single.php ….thanks
Looks great, really wonderful work. Congrats! Good luck with sale!
thanks a lot!
Just get the email update available for today. May I know what the change log?
The list of changes (Version 1.2.1):
- A possibility to show teaser in the full post text for the blog is added (optional)
- An option to insert google analytics is added+
- Settings for title hierarchy (H1-H6) for blog are added
Okay. Good improvement. I hope next update, you can add URL form in blog comment. Thanks.
Please provide more details for what purpose this URL form will be used? And where exactly will be displayed?
You can see this URL http://shiftcv.wpspace.net/quisque-odio-eros/
See the comment form below and you can see the Name, Email, Your Message.
So, please add form like Website for people to put their URL. See example below this posts http://www.briangardner.com/three-promises/
I hope you also can make the update for Related Posts, because its show the posts from draft.
Add rel tag to open new window when people social icon in header and social sharing below posts.
Add Pinterest icon in header.
When mouse hover at social icon in header, the rel title tag appear like “Facebook”, “Twitter” and so on. Same for social sharing below posts, the rel title appear like “Share on Facebook”, Share on Twitter” and so on.
Thanks. 
Please, provide your email. We will send you updated comments.php file and you just replace it.
Its okay. I’m waiting for the next update version.
Is it possible to disable/remove the portfolio category?
Hi! The whole category with potfolio items or the whole section?
With the latest update, it now shows my professional experience in reverse order (from oldest to newest). I want this to be newest to oldest. How can I make a modification? Thank you!
Hi! To sort job history from the oldest is the feature. To make sort order from the recent job go to template-resume.php and in line ‘order’ => ‘desc’, set asc instead of desc. Open template-print.php and do the same. In the template-print.php there is only one change to be made but in the n the template-resume.php there are two places to change desc to asc the first place is <?php $args = array( ‘post_type’ => ‘resume’, ‘post_status’ => ‘publish’, ‘post_password’ => ’’, ‘posts_per_page’ => -1, ‘orderby’ => ‘meta_value’, ‘order’ => ‘asc’, ‘tax_query’ => array( array( the second place is here $args = array( ‘post_type’ => ‘portfolio’, ‘post_status’ => ‘publish’, ‘post_password’ => ’’, ‘posts_per_page’ => -1, //max(3, get_theme_option(‘portfolio_ppp’)), ‘orderby’ => ‘date’, ‘order’ => ‘asc’. We will also add an automatic sort option in the next release!
Hi,
I just bought this great theme, and so far it’s working well. But, of course, I have one little question..
How can I reorder the contents of my resume?
Examples:
1) I added a new section ‘interests’ to the resume AFTER I’ve built my other sections. Obviously I want this to come last, but because it’s the most recently added, it appears first.
2) I’ve added entries to my ‘employment history’ section in the resume, but the problem is the same as above. Even though I’ve defined the dates of my various jobs, the order they’re shown in the is order in which I added them.
How to fix? I tried the ‘metronet-reorder’ plugin, but it doesn’t seem to help..
I’m capable of coding and/or editing the DB, if that’s needed.
Thanks 
ahh. never mind, I found the post about using this plugin:
http://wordpress.org/plugins/post-types-order/
Thanks for update in V1.2. I will update later. Next update, please also add Pinterest icon in header. Also in share icon.
PAY ATTANTION! A newbuilt version 1.2.0 available!
The list of changes:
1. The error in localizations of the Theme Options sections is fixed. 2. Styles for code insertion into the post’s or page’s text is added. 3. A possibility to set up an option ‘Download Resume’ is added. 4. An option to set up the description of item’s portfolio is added. 5. All the scriptis are updated for actual versions.
Please, update the archive with the theme.
PS. No worries, tomorrow we will publish some improvements, which haven’t been done for today’s update
Wpspace team
Hello…
I hope you make update for…
In blog comment, i hope you can add URL form.
Please fix related post, because its also show draft posts. When people click, they get 404 error because that posts still in draft.
Please add the code to open in new window when people click social icon in header and share button below posts.
Lastly, please update heading tags (H1, H2, H3) for better SEO friendly like I mention before.
Thanks.
Hi,
Is is possible to have a section whereby you can add google analytics code ?
thanks
We will add such possibility in the next update. As for now you can manualy insert code to the footer.php file.
Hi great theme,
I have 4 questions
1) where is the line of code contact form profile, I need to translate text name and Your Message to Spanish, the template-resume.php searched and did not find it.
2) Where is the line of code size of the title, I changed it in edit option, editor (style css, line 50) h1 {font-size: 20px, but did not change size
3) Where is the line of code the text “all posts” blog, I would like to translate to Spanish
4) I can change the font of the first and last name? how I can do it.
Thanks for everything
Hi!
1)You can use localozation files in the folder languages for the theme translation. All records that are available for the translations were added there.
2). Line 952 in style.css file.
4). You can change styles firestname and lastname in the file style.css (line 950).
Very nice theme! Within the Resume section, I am having a difficult time getting the categories and the items within the categories into the correct order. I tried changing the published time of each item so that the items I wanted highest within a category are published more recently. This only worked for some of the items. How do I re-order the resume categories? and also how do I re-order items within each category?
Categoties are sorted in alphabetical order. You can name them for example 1) Employment, 2) Education (or use “a)” “b)” and so on). And records insite categoties are sorted in period order (from).
I don’t know if this has been causing others bother. I was getting issues where if i used apostrophes, e.g. i’m, i would get i\’m. To fix this issue wrap the particular variable with stripslashes() e.g. i did <?php echo stripslashes($user_description); ?> is template-resume.php.
Hi! You need to user (‘\’) shielding before the apostrophe.
Thanks very much. That is a lot easier than searching out the code to wrap in stripslashes(). Keep up the good work! 
Do you plan on implementing a way for developer to change the Employment/Education Sort order in future releases. Even if you could direct me to the line of code where i could put in asc or desc it would be much appreciated.
Loving the theme though. Rated 5 star. Exactly what i was after to advertise myself and build a knowledge blog as well.
Hi! Yes, we will implement option asc-desc for Resume section! Thanks for a good idea!
It’s possible have others languages like Portuguese? Brazil is an emerging country and is seeking global alternatives. I think if we found more issues with language support, more people would be interested in the themes.
We support simple localization, for more information please use http://codex.wordpress.org/Installing_WordPress_in_Your_Language and http://codex.wordpress.org/WordPress_in_Your_Language.
where in the code should I edit to make the print icon simply download a pdf, rather than printing?
We will add such function in the next release on Monday!
Hi,
Love the theme. I would like to know how to change the order of resume item. I want to make the order like: education -> Employment -> Activities/hobby
Currently, i think its sorted alphabetically right ? Any way to sort it by posting time or any options to change the order ?
Just a feedback, when opening in mobile phone, the opening and closing of the each tabs is not as smooth. The padding at both left and right can be reduced too, so that it does not look so squeezed
Hi! Thanks! There is no function in the theme to control sort order, but we recommend our customers to use http://wordpress.org/plugins/post-types-order/ plugin. This plugin is using to control the display order of all post types.
Already purchase.. Simple setting and nice theme. But when I discover around the theme, I can say this theme still NOT user SEO friendly.
You use wrong Heading Tags (H1, H2, H3) in single blog posts. I think you should make the new update about this. Single blog posts Title should have H1 heading tag, not H3 heading tag.
Also, in Blog Page, please set new heading tag code. I see you use H3 heading tag in title posts. It should have H2 heading tag for title post in Blog Page.
And in any single page/post, it must use just one H1 heading tag. So, I’m waiting for the new update.
Thanks.
During the process of title selection, our main priority is the rules of typography. Considering our experience in the website development, as well as today’s trends, we have come at the conclusion that this point doesn’t affect SEO. However, we try to satisfy our customers, if it’s of our authority. Which is why, the next update includes an option to set up the title hierarchy for blog stream page and single posts.
Not satisfy answer. Today, heading tags (H1, H2, H3) still affect SEO.
You said, your experience in website development, but I see many more update need in this theme.
The typography in text not really nice. In Blog Page or in any Page, you should add margin-bottom for p syntax.
The read more also broken for me. When click read more in blog posts, it not show previous content in single posts. Really bad.
Also, you should add option to change font, size, and many more. As you said your experience in website development, its still not blow my mind.
Sorry for bad reviews, but you should make many many more update about for this theme. Especially in Blog setting.
Thanks any way for your feedback. We appreciate any point of view!
Most welcome. Just wait to see what news in next version update!
I had a question about changing the word “Contacts” to something else on the template_resume.php. I can see where your calling the section_title, but I am not exactly sure where that is in the other php files? I looked around, but I wasn’t sure exactly where to change it.
You can edit it in template-resume.php in row
‘<?php _e('Contact info', 'wpspace'); ?>’