Easo
Forum Replies Created
-
Forum: Plugins
In reply to: [OTW Portfolio Light] Issue with the thumbnailsHi,
I’m also having problems with the thumbnails.I changed wrote controlNav: “thumbnails”,
in the flexslider-custom.js, but it’s not working at all. Only numbers appear.Could you please explain how did you fix it?
Forum: Plugins
In reply to: [OTW Portfolio Light] Hover image change the color from blue to pinkHi Madalina,
de blue color from the hovering is actually an image.You can change it in the “otw-portfolio.css” file.
The class to be changed is: “.otw-sc-portfolio .otw-portfolio-item-link > div.text”,
take away the “background: url..” and change it with “background-color: #yourcolor”.I hope it helps. ??
Forum: Plugins
In reply to: [HMS Testimonials] Wrap Image & text with HTMLI’ve been looking at the admin.php file, but I can’t figure out where to place my div.
I know very little of php at the moment.
My guess is that I should place somewhere inside this code?[ Moderator note: please wrap code in backticks or use the code button. ]
$container = HMS_Testimonials::getInstance()->options['testimonial_container']; if ($container == 'div') $builder .= '<div class="testimonial">'.apply_filters('hms_testimonials_system_testimonial', $testimonial['testimonial'], $testimonial).'</div>'; elseif ($container == 'blockquote') $builder .= ' <blockquote>'.apply_filters('hms_testimonials_system_testimonial', $testimonial['testimonial'], $testimonial).'</blockquote> '; break; case 'system_source': $testimonial['name'] = $purifier->purify($testimonial['name']); $builder .= '<div class="author">'.apply_filters('hms_testimonials_system_source', nl2br($testimonial['name']), $testimonial).'</div>'; break; case 'system_date': $date = strtotime(strip_tags($testimonial['testimonial_date'])); $show_date = date(HMS_Testimonials::getInstance()->options['date_format'], $date); $builder .= '<div class="date">'.apply_filters('hms_testimonials_system_date', (($testimonial['testimonial_date'] == '0000-00-00 00:00:00') ? '' : $show_date), $testimonial).'</div>'; break; case 'system_url': $url = '';
But I have done some tries and it didn’t work.
Forum: Plugins
In reply to: [HMS Testimonials] Wrap Image & text with HTMLHi Jeff,
thanks for the help.
However I wanted to have the author and testimonial in a div separated from the image, so I need to create a new div inside “hms-testimonial-container”.Where can I create that new div?
Thanks in advanced!
Forum: Plugins
In reply to: [HMS Testimonials] Wrap Image & text with HTMLHello,
this plugin is working very nicely, however I can’t find a way to style it.I need to wrap together the “author” and the “testimonial” inside a div.
I have looked at the admin.php file but I’m a beginner and I don’t know where to find the code to be changed.Any help, please? ??
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Can't select input fieldsHello,
I’m having the same problem: I can’t select the imputs but using TAB.
I’ve tried to use the default form to be sure it wasn’t a mistake in the HTML structure, but it’s not working.Here is the page: eziopellicano.it/contatti
I’m using three forms, one for each language. None of them is cliccable.Forum: Plugins
In reply to: [012 Ps Multi Languages] 012 Ps multi languages: only displays certain pagesOk I made it!
Just in case somebody has the same problem, I have change the code I had in my custom pages, it was something like this:
<?php
$my_id = 67;
$post_id_67 = get_post($my_id);
$content = $post_id_67->post_content;
$content = apply_filters(‘the_content’, $content);
$content = str_replace(‘]]>’, ‘]]>’, $content);
echo $content;
?>with the loop structure I was using in page.php.
Forum: Plugins
In reply to: [012 Ps Multi Languages] 012 Ps multi languages: only displays certain pagesThe plugin works in those pages that use page.php, but it does not work on pages made by me, such us page-home.php.
Forum: Plugins
In reply to: [012 Ps Multi Languages] 012 Ps multi languages: only displays certain pagesHi Wang Bin, thanks for the advice.
In wich file do I have to hook that route?