_rg_
Forum Replies Created
-
Forum: Plugins
In reply to: [Development Theme] Not workWell, old thing, now working. Closed
Forum: Plugins
In reply to: [Development Theme] Stopped working after upgrade to version 3.7Updated for any user role actived and working with wp 3.8.1.
Forum: Plugins
In reply to: Problem on my own plugin showing other author not my!Ok, forget it, it takes a while, but now it´s showing Me!!, was that, you need to update all the tag readme.txt files commited in order to work and system take it.
Closed.
You need to edit the template where that img is placed. Could be single.php file, there you will see code for outputing the featured img and also the code for the_content, try to switch place and update file.
That´s all i can say based on what you described.
Forum: Themes and Templates
In reply to: Link text color not workingIf theme options can define those colors, why you already have defined that on the css as important?
You must take a look at the code and see which definition is last or if there´s some other class definig that color.
For example, even you have a{color !important}, if there´s something else like .main p a{color!important}, that last rule will apply to that particular tag.
Forum: Themes and Templates
In reply to: Replacing theme ruins websiteActualy you are using Twenty Eleven on that URL. So, no body can see what you are talking about 🙂
By the way i see this error on inspector:
Failed to load resource: the server responded with a status of 404 (Not Found) http://www.agamy.co.il/wp-content/themes/twentyeleven/sidebar_style.css
There´s no sidebar_style.css on that folder.
Forum: Reviews
In reply to: [Development Theme] Great plugin!Hi Sam, thanks, and yes i´m thinking on update with some more options, but i don´t want to make the plugin an “all terrain”, i wish to keep it simple.
The part on been able to target certain admins, yes, could be and i was thinking on that too. But the part with Ip´s, i don´t know if that´s only a particular case and i´m not sure if that could make the entire plugin hard to setup. May be i need to put some “advanced setup” on plugin´s options for something like that.
Anyway, thanks so much for your feedback,
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] If elseThe get_option_tree “returns” a value. You need to “echo” that value, this way:
echo get_option_tree(…..
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Theme Integration+1
Forum: Fixing WordPress
In reply to: wp_get_attachment_image_src Array Not Workingtry with wp_get_attachment_image(), i know, it will not give you the src, but the entire img tag…. but works.
Forum: Fixing WordPress
In reply to: qtranslate and Breadcrumb NavXTForum: Fixing WordPress
In reply to: qtranslate and Breadcrumb NavXTForum: Plugins
In reply to: [Plugin: Events Calendar] day names are not translated in the sidebari´m working with qtranslate and events cal too, and i found a way to fix some problems… may be folowing same as me, you can find a solution.
take a look what i posted on the qtranslate forum:
http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=16&p=1014#p1014
Forum: Plugins
In reply to: Need help with qTranslate and sidebarMAKE A MISTAKE, rest one to lines count… so change code on lines 234 and 441.
Also i found when you change the month, problem with titles on shadow box (rollover events) still happend, so change this: (line 179)
$calendar_days[$day_id]->add_post($ent->post_title,$time,$ent->is_event);
to this:
$calendar_days[$day_id]->add_post(__($ent->post_title),$time,$ent->is_event);Forum: Plugins
In reply to: Need help with qTranslate and sidebarto solve:
TO FIX THE SHADOW BOX post_titles when rollover an event on the calendar widget:
template-functions.php line 235:
change this:
. ‘” title=”‘ . $calendar_days[$day_id]->get_titles() . ‘”‘;to this:
. ‘” title=”‘ . __($calendar_days[$day_id]->get_titles()) . ‘”‘;TO FIX THE post_titles ON Upcoming events, line 442:
this:
stripslashes(strip_tags($entry->post_title)),
to this:
stripslashes(strip_tags(__($entry->post_title))),So, adding __(*) could solve, i guess, much of this on some other parts, i only fix what i´m using. Hope this help anybody like me!! 🙂