Frenchtastic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Coeur] How to get bold typeIf you’d like to change it right away edit the blog.css file and change this:
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
font-weight: 100; to font-weight: 300;
}And same for
`h1 a, .h1 a,
h2 a, .h2 a,
h3 a, .h3 a,
h4 a, .h4 a,
h5 a, .h5 a,
h6 a, .h6 a{
font-weight: 100; to font-weight: 300;
}Forum: Themes and Templates
In reply to: [Coeur] How to get bold typeHi do you know how to edit CSS files?
If not it’s all good a new option has been included in the theme update which will allow you to easily make headings bolder, the update should be out within a few days.Forum: Themes and Templates
In reply to: [Coeur] Remove Comments BoxHello,
No need to edit CSS files when it comes to removing the comment box. Simply do the following:Go to your dashboard hit pages.
Then select every page you want to remove the comment box from (checkbox on the left hand column) then hit the select menu where it’s written bulk option And select edit.
Then check Do not allow comments and save And you’re all set!
Cheers!Forum: Themes and Templates
In reply to: [Coeur] Enabled categories, page displays by AUTHOR inin XX, XXYou can contact me using this address: [email protected]. Don’t be shy, please contact me if you need any help.
Thanks for reminding me of this, it’s just a temporary website but I still had to fix it.Thank you very much, I really appreciate your support, Paypal page is now fixed and should display in english ?? Thanks for pointing it out.
Once again, I really appreciate your support.
Thanks.Forum: Themes and Templates
In reply to: [Coeur] Enabled categories, page displays by AUTHOR inin XX, XXHum, That’s really weird it seemed to be working all fine on my install.
Thanks for your fix, I’ll take a deeper look into this issue and fix it in the next update.
Thanks for the feedback, very much appreciated.Cheers!
Forum: Themes and Templates
In reply to: [Coeur] width of body and sidebarOh yeah sorry about that, css files don’t appear in editor … My bad
Yes absolutely, edit it on your computer and upload it using your favourite FTP client!Anytime!
Cheers!Forum: Themes and Templates
In reply to: [Coeur] width of body and sidebarHi,
Go to Appearance > Edit and select blog.css in the right hand column.
Look for .container (line 1155)it should look like this
.container{ width: 970px; }
Replace 970px by whatever you’d like, a standard size would be something like 1170px
Forum: Themes and Templates
In reply to: [Coeur] How to add footer sidebar for widgetsHi,
I like the wider look better as well ??
Coeur does not yet allow you to have widgets in the footer area, I’ll add this option in the next theme update which should be out in less than two weeks.Thanks for your feedback,
Cheers!Forum: Themes and Templates
In reply to: [Coeur] ImageHi,
Thanks for your feedback, you’re absolutely right it does affect CEO to lose the site name even though it is still displayed as page title (in the browser tab). This is a mistake and it will be fixed in the next theme update. I’ll also add support for custom header background which will allow you to add a complete header background.Cheers!
Forum: Themes and Templates
In reply to: [Hueman] Make work French translation/languageHum..
Do you have both fr_FR.mo and fr_FR.po files? Is text domain declared?
Forum: Themes and Templates
In reply to: [Hueman] Make work French translation/languageYes absolutely,
The standard procedure for translating a WP theme is simply adding your .mo and .po file to the language repository.
If it does not work it might be because your are not using WordPress in this very language. Let’s say you add your fr_FR translation file to your theme but you are using WordPress in English you need to tell WordPress which language file to use.
To do so simply edit the following line in your wp_config file
define ('WPLANG', '');
to
define ('WPLANG', 'fr_FR');
Forum: Themes and Templates
In reply to: [Hueman] Make work French translation/languageHi,
Simply adding your translation file to the languages repository should do the trick.
You could perhaps try changing the following line in your wp_config file.define ('WPLANG', '');
todefine ('WPLANG', 'fr_FR');
Forum: Fixing WordPress
In reply to: Displaying all blog post on home pageHi,
Go to Settings > Reading you’ll find an option called “For each article in a feed, show” set it to full text.
You’ll also find a second option called “Blog pages show at most” set it to 9999 or more.Forum: Fixing WordPress
In reply to: How to change Landing page URL?Hi,
Go to Settings > General and set the “Site Address (URL)” option to whatever you’d like.
Forum: Fixing WordPress
In reply to: WorkflowHi,
I would suggest using git indeed.
The main reason would be that if anything goes wrong with your local aka staging website you do not have any backups. Lets say you do something on your local install and it looks good so you push it live and then realise afterwards that it created some issues you had not noticed in the first place. In this case you might want to recover files from a previous version, or more importantly browse changes which can be done easily using git.