Simone
Forum Replies Created
-
Forum: Plugins
In reply to: [Latest Vine Video] hashtag not foundSame error. Even when I do really basic words like #cool and #art
Will check back on this to see if anyone (preferably plugin author) has replied
Maybe just create a new page template and assign it to home?
Thank you for your reply, but this is not quite what I am looking for.
take a look at the screenshot on the plugin page
Notice how it is the initial splash page the user must see before it can continue to the site? depending on which of the three buttons you can click, it will take your to that part of the site.
example:
Continue as Teen > links to a pages for teens
Continue as Adult > links to page for adults
Continue as Developer > link somewhere elsesee what I mean?
Forum: Plugins
In reply to: [Plugin: WooCommerce] Placing Review link & Rating next to product in cataloggot it, it shows up when there is a review made
Forum: Plugins
In reply to: [Plugin: WooCommerce] Placing Review link & Rating next to product in catalogI feel like I have to echo:
echo '<div class="star-rating" title="'.sprintf(__( 'Rated %s out of 5', 'woocommerce' ), $average).'"><span style="width:'.( ( $average / 5 ) * 100 ) . '%"><strong itemprop="ratingValue" class="rating">'.$average.'</strong> '.__( 'out of 5', 'woocommerce' ).'</span></div>';
in shop-loop.php or something…
Solved it, had to update blanco to new version from TF.net
Forum: Plugins
In reply to: [Plugin: TPG Get Posts] Read More Tag Not Workingthanks so much for your help, I’ll check into it
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product Categories WidgetI too, would like to know how to do this. The WooCommerce product categories plugin is perfect for displaying categories in a drop-down menu, however, I wish I can filter out certain categories and perhaps only show one parent category and its children..
If anyone can help us with that, whether it be a technical fix, or a plugin alternative.. it would be awesome! :]
-Simone
Thanks so much!!!
Forum: Plugins
In reply to: [Plugin: Gigpress] Decription info item has p tagsAlso – Comparing my city to theirs, my city seems to be 1-2 px too low.
I added this css:
td.gigpress-city { padding-bottom: 22px; }
But it pushed everything under it down and that’s a problem..
Here is my PHP:
<td colspan="<?php echo $cols - 1; ?>" class="description"> <?php if($showdata['time']) : ?> <span class="gigpress-info-item"><span class="gigpress-info-label"><?php _e("Time", "gigpress"); ?>:</span> <?php echo $showdata['time']; ?>.</span> <?php endif; ?> <?php if($showdata['price']) : ?> <span class="gigpress-info-item"><span class="gigpress-info-label"><?php _e("Admission", "gigpress"); ?>:</span> <?php echo $showdata['price']; ?>.</span> <?php endif; ?> <?php if($showdata['admittance']) : ?> <span class="gigpress-info-item"><span class="gigpress-info-label"><?php _e("Age restrictions", "gigpress"); ?>:</span> <?php echo $showdata['admittance']; ?>.</span> <?php endif; ?> <?php if($showdata['ticket_phone']) : ?> <span class="gigpress-info-item"><span class="gigpress-info-label"><?php _e("Box office", "gigpress"); ?>:</span> <?php echo $showdata['ticket_phone']; ?>.</span> <?php endif; ?> <?php if($showdata['address']) : ?> <span class="gigpress-info-item"><span class="gigpress-info-label"><?php _e("Address", "gigpress"); ?>:</span> <?php echo $showdata['address']; ?>.</span> <?php endif; ?> <?php if($showdata['venue_phone']) : ?> <span class="gigpress-info-item"><span class="gigpress-info-label"><?php _e("Venue phone", "gigpress"); ?>:</span> <?php echo $showdata['venue_phone']; ?>.</span> <?php endif; ?> <?php if($showdata['notes']) : ?> <span class="gigpress-info-item"><?php echo $showdata['notes']; ?></span> <?php endif; ?> <?php if($showdata['related_link'] && $gpo['relatedlink_notes'] == 1) : ?> <span class="gigpress-info-item"><?php echo $showdata['related_link']; ?></span> <?php endif; ?> <?php if($showdata['ticket_link']) : ?> <span class="gigpress-info-item"><?php echo $showdata['ticket_link']; ?></span> <?php endif; ?> <?php if($showdata['external_link']) : ?> <span class="gigpress-info-item"><?php echo $showdata['external_link']; ?></span> <?php endif; ?> </td> </tr> </tbody>
Any suggestions would be greatly appreciated! ^_^
-S
Forum: Fixing WordPress
In reply to: htmlentities function to avoid xss injection attacksGood point.. Thanks, you’re a life saver
PS – I was using the default contact form from a theme
I took over this site’ reigns from another dev, and they were calling several different headers..
Some of them have .js files with the following names:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js
another header:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js">
yet another:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript">
But these headers are not being called anywhere in the theme!
I’ve only installed one plugin since It’s stopped working.. I deactivated it and it does not solve the problem.
https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js – This is an older version loaded via google
this IS in my header.php file.. is this the one to be removed?
thanks so much for your help smigliorato!
Notice the slider gallery is supposed to scroll to the left to show more images but it is not anymore. What could have caused this?
thx
Forum: Fixing WordPress
In reply to: Changing wp_error to display generalized error messageI know I can switch line 277 from ON to OFF
but I need to make a new error message..
–Anyone?
Forum: Fixing WordPress
In reply to: Changing wp_error to display generalized error messageThanks so much for your reply.
How exactly would I modify the php.ini file to display a generalized message such as “An error has occurred, please contact webmaster..”
I need to tweak my exception handling module to block stack traces and display a generic message.