theyuv
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Buttons (and other elements) appear “glossy”Yes, that worked.
Thank you!
Forum: Plugins
In reply to: [WPGlobus] Custom Links different URL per languageThanks.
Forum: Plugins
In reply to: [WPGlobus] Custom Links different URL per languageHello,
Should the “Custom Links” in menus be localized automatically?
My site is showing the same url regardless of locale.
(Perhaps it has to do with the fact that I’m on my local machine and in a subfolder)
Thanks.
- This reply was modified 9 years, 9 months ago by theyuv. Reason: added sentence
Forum: Plugins
In reply to: [Polylang] RTL.CSSHello,
I just added the rtl.css file myself.
It is automatically loaded according to (I think) text direction.Forum: Plugins
In reply to: [WPGlobus] Same post for different languagesHey Alex!
Yes, that’s precisely what I mean.
It seems like a common case but I wasn’t able to do it with my previous i18n plugin.
So this is possible with wpglobus?
Thanks!
Forum: Plugins
In reply to: [DW Question & Answer] Internationalize forum but questions in one languageI know that the Polylang plugin has a function pll_get_post that allows the post to be retrieved for a particular language.
However, I don’t know what DWQA uses. I could specify to always retrieve the question’s title and content in ‘en’ perhaps?
I also have this issue.
Any updates?
Forum: Plugins
In reply to: [Polylang] Showing non translated posts and pagesHello,
Did you ever find a solution to this issue.
I am also interested in having something like this (untranslated posts, but the rest of the page (eg: header) is translated).
Thanks.
Forum: Fixing WordPress
In reply to: Move test site changes to live without losing live postsHello,
I don’t have an answer, but I had a similar question:
https://wordpress.org/support/topic/updating-an-existing-live-site/#post-8205824
Have you found any solution to this issue?
Thanks.
Forum: Fixing WordPress
In reply to: Updating an Existing, Live SiteI see, thanks.
1) What is normal practice then for updating live production WordPress sites?
Is it just not too common for updates to be made to the DB? As far as I see it (I’m new to WP), every time I add something like a Widget or Menu it gets stored in the DB…So it seems pretty common.2) So you version your php stuff. And then when it comes time to move it to production, how do you ensure a smooth transition between old and new files (ie: if you remove then add then there’s a brief period where the files are missing)?
Maybe WordPress sites require less maintenance and I am overthinking this since I haven’t deployed the live site yet.
Any link would be helpful.
Thanks.
Forum: Fixing WordPress
In reply to: Add classes to ul and li elements in sidebarYes, that was the original question.
I was not able to find “hooks”. The code snippet in my reply above had:<?php do_action('before_sidebar'); ?> <?php dynamic_sidebar('sidebar-right'); ?>But I’m not sure where the code for these is written (I did a search in the theme’s folder and only found the files where these functions are called, not where they are defined).
Thanks.
Forum: Fixing WordPress
In reply to: Add classes to ul and li elements in sidebarIs it good practice to use jQuery for things like this in WordPress?
I’m new to WordPress, I notice people try to not use jQuery as a fix for these types of problems.But thanks, I’ll consider it.
Forum: Fixing WordPress
In reply to: Add classes to ul and li elements in sidebarHey, sorry for the late response. Thanks for your input.
If I take a look at the theme’s sidebar-right.php, it does not directly code most of the html, it has:
<div class="col-md-3" id="sidebar-right"> <?php do_action('before_sidebar'); ?> <?php dynamic_sidebar('sidebar-right'); ?> </div>I tried to look for the code of
do_action('before_sidebar')anddynamic_sidebar('sidebar-right')so that I could maybe manipulate the html there, but I couldn’t find where these functions are defined. Do you know where I can find them? If finding them will help me manipulate theulandlielements?Thanks.
- This reply was modified 9 years, 9 months ago by theyuv. Reason: formatting
Forum: Plugins
In reply to: [Polylang] DW Question Answer – Question Tag TranslationsI got an answer for a similar question from DWQA (https://wordpress.org/support/topic/polylang-and-question-tags/#post-8181371) but still interested to hear if you have any suggestions.
Forum: Plugins
In reply to: [Polylang] Locale in Url like www.example.com/en/blog/…Thank you, I will try this. Can you foresee any problems with this solution? Is it a hack or a valid solution?
(I will be installing wordpress in the same folder as my main site then, the permalinks will differentiate between my regular site and wordpress site).