offpeakdesign
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Header Ads Widget Has VanishedJust to clarify, this allows the actual widget to display for visitors that have adblock on. (I guess, unless you actually put ad code in there.)
You will still need to disable adblock on your own browser to view the widget editor in the backend.
Forum: Themes and Templates
In reply to: [Hueman] Header Ads Widget Has VanishedI think I managed to allow this to display even if you have adblock on.
Copy the header.php file into your child theme.
Change:
<div id="header-ads">to:
<div id="header-widget">Then add this to your child/custom css:
#header-widget { float: right; }
#header-widget h3 { display: none; }
#header-widget img { display: block; }Forum: Themes and Templates
In reply to: [Hueman] Header Ads Widget Has VanishedWould be nice to fix this in the theme so that abp would not recognize this as an ad widget. Could be used for other content other than ads.
Forum: Themes and Templates
In reply to: [Hueman] Captions on featured imagesHi bdbrown, is there a way this can be applicable to the category/blog pages? For featured thumbnails?
(Edit: nevermind, it seems to work when I implemented your code. thanks!)
Forum: Themes and Templates
In reply to: [onetone] adding personal info iconsOf course I figure these things out moments after asking the question. I went to aweseome fonts and used firebug to see what icon code to use, and copy and pasted it into my new css line.
So adding a new line in the content editor:
<li class="info-pdf">Then adding css:
li.info-pdf::before { content: ""; }Forum: Themes and Templates
In reply to: [onetone] parallax effect in mobileI found this solution to work:
topic:Disable parallax on mobile?
and added this to my custom css:
@media only screen and (max-width: 1100px) { .section { background-attachment: scroll !important; background-position: center center !important; } } @media only screen and (-webkit-min-device-pixel-ratio: 2) { .section { background-attachment: scroll !important; background-position: center center !important; } }Forum: Themes and Templates
In reply to: [onetone] video starts latethanks for the reply. I wasn’t able to install that particular plugin (which seems to be 7 yrs old). Might something like “JW Player for Flash & HTML5 Video” plugin work instead? Would I just embed the video using the section content area?
Forum: Plugins
In reply to: [Testimonials Widget] import from posts?cool, thanks!
Thanks for looking into it. I realized the issue was because I used the site-header class. I wanted the whole header to become fixed, but that caused the content to shift up. To fix this, I added another div within the site-header to use as the sticky class. That seemed to work.
Forum: Plugins
In reply to: [Photospace Gallery] Conflict with Events Manager ProThis helped me out! Thanks for posting solution!
Found out what I needed to add:
// My Child Theme Setup add_action( 'after_setup_theme', 'twentyeleven_child_theme_setup', 11 ); function twentyeleven_child_theme_setup() { new widget code }Realized that the child function file was recognized first, and needed to be recognized after the original function file. Reference link
I actually found this and applied it, which seems to affect the widgets, but still doesn’t override the name for some reason…
remove_action( 'widgets_init', 'twentyeleven_widgets_init' ); function ofpk_widgets_init() { register_sidebar( array( 'name' => __( 'NEWNAME Sidebar', 'twentyeleven' ), 'id' => 'sidebar-1', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'ofpk_widgets_init' );Forum: Themes and Templates
In reply to: [Responsive] can't modify widgetsThat worked for me @wpyogi, thanks. The plugin causing the issue was WP UI. I have it in other sites, and it works fine, but with the Responsive theme, it doesn’t seem to work.
Forum: Plugins
In reply to: [Gravity PDF] include user login idah, nevermind. I figured it out. I needed to add another form item with a default value of the id.
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] Not Working At All?My issue was related to the files being in a subdirectory, but this fixed it. Maybe try it on your site…
“change your Settings>WP UI>Advanced>Demand Load Scripts (check on)”
original discussion:
http://kav.in/forum/discussion/4811/updated-plugin-tabs-turned-into-vertical-list