ferdri3
Forum Replies Created
-
same problem.. it does show it on pages, but it cant get any tweets pulled.. so it says something like “no tweets available” and after that shows the follow button
Forum: Plugins
In reply to: In search for a Plugin – searchI found http://www.prowebdesign.ro/sortable-design-portfolio-with-wordpress-3-0-tags-and-jquery/ which is almost what Im looking for
Forum: Hacks
In reply to: Admin Widgetyou are right, but it actually saves time and shouldnt be that much work to program.. position: fixed; if I remember correctly.. just cant find where lol
EDIT: got it already.. was busy with something else.. anyway, I think they should just add that in 3.4 it doesnt seem like much, but it helps lol
Forum: Themes and Templates
In reply to: ChildTheme CSS cancel 1?thanks for the replies,
I want to lose the sidebar on all templates, which means I need to change the sidebar.php.. which I did..
The real question I wanted to ask is how to override a style in a childtheme when you dont want an element.
like this:
#primary, #secondary { float: right; overflow: hidden; width: 220px; }Lets say I copy this to my childtheme because I dont want a width of 220px.. I want no width actually.. Can I remove that width code? or will it (if I remove it) be copied automatically from the parent theme?
Forum: Themes and Templates
In reply to: Div around postsI managed to get what I wanted.. instead of changing loop.php for 5 hours, I should of changed loop-single.php
Forum: Themes and Templates
In reply to: transparent background for pagesEDIT:
#main { background: #fff; }
.page #main { background: transparent; }Is perfect
Forum: Themes and Templates
In reply to: transparent background for pagesI use “inspect element” in google chrome, which works kinda the same as firebug.
The code you gave me worked perfect! Thanks a lot!
Forum: Plugins
In reply to: [Social Connect] [Plugin: Social Connect] Multisite Top-Level DomainsOk srry for misunderstanding.
thanks for the reply!Forum: Themes and Templates
In reply to: transparent background for pagesThanks alchymyth that worked perfect!
Another question, now I see that in my posts even the header gets a colored background. I build this childtheme with
#wrapper: { background: transparent; }
so I totally forgot that it covered the whole webpage.. anything I can about that?PS. for others asking the same (first – on top of this page) question:
add
.page #wrapper { background: transparent; }
to your childtheme’s css fileForum: Plugins
In reply to: [Social Connect] [Plugin: Social Connect] Multisite Top-Level Domainshello willcast,
I was researching about the top-level domain, since I have the social connect plugin already installed. What do you use the top level domain plugin(?) for?I was wondering if it could be used to “manipulate” the site wide tags plugin so that every (actually subdomain) top-level-domain could pull in their subdomain posts. Any experience with this?
Forum: Plugins
In reply to: [Twitter Widget Pro] [Plugin: Twitter Widget Pro] Hide titledont remove it.. just put “//” infront of the lines
// if ( empty( $args['title'] ) ) // $args['title'] = "Twitter: {$args['username']}"; // $args['title'] = apply_filters( 'twitter-widget-title', $args['title'], $args ); // $args['title'] = "<span class='twitterwidget twitterwidget-title'>{$args['title']}</span>"; // $widgetContent .= $args['before_title'] . $args['title'] . $args['after_title'];So I guess I need to give more info.
I found this code, but dont know how to implent it into this plugin.
http://wordpress.org/support/topic/aggregating-recent-posts-to-parent-site-in-multisite-install?replies=46#post-1628866Well here it says how to implent it hardcoding way:
http://wordpress.org/support/topic/aggregating-recent-posts-to-parent-site-in-multisite-install/page/2?replies=46#post-2195353Still would love to have it in widgetform
additional information:
The folder has 9 php files:
– admin.php
– bloglist.php
– broadcast-posts.php
– cache.php
– multisite-widgets.php
– post-feed.php
– recent-comments.php
– recent-posts.php
– functions.phpAnyone good with PHP could help me I guess.
I don’t know if it is any help but here is the functions.php code:<?php function diamond_arr_to_str($arg) { $ret = ''; if (!$arg || $arg == '') return $ret; foreach($arg AS $a) $ret.=$a; return $ret; } function get_format_txt($code) { if ($code && $code != '' && mb_substr($code, 0, 8) == 'encrypt:') return base64_decode(mb_substr($code, 8)); return $code; } function get_format_code($txt) { if ($txt && $txt != '') return 'encrypt:' . base64_encode($txt); return $txt; } ?>Forum: Plugins
In reply to: Add drop-shadow to widget in sidebaranyway, you need to add
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;to the div surrounding the widget/widget-area in CSS.
Widget area: see “style.css” in you theme folder
Widget: you need to go to your plugin folder and inside the map of that plugin you will probably find a .css file.in 1 of those 2 files (depending on where you want to add the dropshadow) you need to find the div (something like:
#mail_wrap { *some code* })
and add the code I gave you above.. if you want to change the angle of the shadow, just mess around with the numbers.Forum: Plugins
In reply to: Add drop-shadow to widget in sidebarhello felilikesflowers,
depends on if you want a dropshadow on the widget itself or the widget area.
difference is that you can put more widgets in 1 widget area.
Example:—————-
Widget Area
– widget 1
– widget 2
—————-You want the dropshadow on widget 1 for example, or on the widget area? (Widget 1 being the email widget)