offpeakdesign
Forum Replies Created
-
Thanks @madbaker! Appreciate you passing on the knowledge!
Forum: Themes and Templates
In reply to: [Hueman] Link Format PostThanks, bdbrown. Prior to your suggestion, I used a post/page redirect plugin to do this and it seems to work fine. Not sure if there are issues with using redirect. Like triggering any kind of browser protection.
Forum: Themes and Templates
In reply to: [Hueman] Link Format PostWhat if I wanted link format posts to link to external links from the post index page? Is there a way to do this?
Forum: Themes and Templates
In reply to: [Hueman] Header Ads Widget Has VanishedThanks Andrew, I agree with you about the author making changes. I’m personally not using it for ads, so I think if you’re not using ads there, my code should be enough of a fix.
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