Ricardo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hiero] Navigation on single posts same as indexWorks like a charm. Thank you very much! I really appreciate it ??
Forum: Fixing WordPress
In reply to: Align text and add paddingI don’t think you understand my question. I have 3 pieces of HTML.
<strong>Release date:</strong> 12/12/2013 <strong>Label:</strong> MTA Records <strong>Purchase:</strong> <a href="link">Beatport</a>
I want them all on the same line but each with 10px padding on the right and I can’t figure out how to get it to work.
I think they all need to be in 1 div to be in the same row but I should make div’s in that div to make the padding work?
Forum: Fixing WordPress
In reply to: Show week of the year instead of dateThank you!:D Works like a charm!
Forum: Hacks
In reply to: PHP: Exclude TagI got it working! Thank you all! ??
Forum: Hacks
In reply to: PHP: Exclude TagYes, but I don’t really understand it. Unfortunately there isn’t an example on the page where a tag is excluded.
Forum: Hacks
In reply to: PHP: Exclude TagI am still not getting this to work (I must be doing something wrong).
I would like to exclude the tag called ‘Featured’. So the code should be:
‘exclude’ => ‘Featured’,
Right?
Where should I put it? (I have tried multiple combinations, but couldn’t get it to work)
<div id="tab3" class="tab_content"> <p class='tag_cloud'> <?php $tags = get_tags(array('orderby' => 'count', 'order' => 'DESC', 'number' => '28')); foreach ((array) $tags as $tag) { ?> <?php echo '<a href="' . get_tag_link ($tag->term_id) . '" rel="tag">' . $tag->name . '</a>'; ?> <?php } ?> </p> </div>
Thanks in advance!
Forum: Plugins
In reply to: [SoundCloud Shortcode] iframe[Attributes Style] always 200pxAs stated above: “I am now back to version 2.0 that does work properly for me.”
I reproduced it here: https://fastforwardandrewind.com/Test/350/test123/
(Newest SoundCloud plugin with everything blank in the options page.)
Forum: Plugins
In reply to: [SoundCloud Shortcode] iframe[Attributes Style] always 200pxBoth the ‘Player Height for Groups/Sets’ and the ‘Player Height for Tracks’ are empty.
What I forgot to mention is that this problem occurs with sets.
Example: [soundcloud url=”https://api.soundcloud.com/playlists/2627134″ height=”200″ iframe=”true” /]
Taken from here: https://soundcloud.com/figure/graveyard
Used here: https://fastforwardandrewind.com/12123/figure-monsters-vol-3/
Forum: Fixing WordPress
In reply to: Weird slide effect rolloverTried it, but they won’t help me… “Your request goes beyond the scope of free support.”
Forum: Fixing WordPress
In reply to: Change link color (hover)Typo ?? It looks like something is overwriting my CSS?
Forum: Fixing WordPress
In reply to: Remove bars twenty eleven themeYeah! Brilliant!:D Thanks!
Forum: Fixing WordPress
In reply to: Remove bars twenty eleven themeNope, it doesn’t do anything
(Thanks for helping btw!)
Forum: Fixing WordPress
In reply to: Remove bars twenty eleven themeI have tried it with my child theme, but I couldn’t get it working.
Forum: Fixing WordPress
In reply to: Plugin makes links of wordsI was missing the
</a>
tagsForum: Fixing WordPress
In reply to: Change te color of a classThanks! It works perfectly! This was exactly the advice needed! ??