Forum Replies Created
-
Mod
Quote:will this get me the follow icons so they can follow me on twitter Facebook etcGraphene Options >> General Options >> Top Bar Options.
Mod
In reply to: How to get widgets/sidebar not to show on some pages
November 19, 2014 at 8:43 pm #43884If it is a page and not a post, you can select the single column page template for that page.
Quote:Can someone help me with the step by step on how to use this plugin?https://wordpress.org/plugins/widget-logic/faq/
https://wordpress.org/plugins/widget-logic/other_notes/
It helps if you know a bit of PHP first. That said, you need to use PHP commands, and PHP opening and closing tags:
<?php
if is_ispage('coupon')
{
echo "your html text here";
}
?>For more information on PHP if:
http://www.w3schools.com/php/php_if_else.asp
You will also any reserved characters included in your html. See this for more information:
http://stackoverflow.com/questions/7999148/escaping-quotation-marks-in-php
http://php.net/manual/en/language.types.string.php
http://php.net/manual/en/regexp.reference.escape.php
See this for actual examples (which may be the best way to learn):
Mod
In reply to: Problem compatibilty between WP4.0 and Graphene 1.9.3.
November 17, 2014 at 12:44 am #43739It appears you are using Google translate. But I think I see what is happening here.
Quote:“display the last items”=”Show latest posts” will only display blog posts, not pages.
Quote:“display items and specific pages.”=”Show specific posts/pages” which will display the posts and pages you specify.
Mod
Marking thread as resolved. You can do this yourself as well.
Mod
Quote:No, just an image, no link.He means “please post an image to the page where this image is” so that he can provide the proper code for it.
WordPress assigns a unique ID to almost everything. You can add a border to a single instance of something by using CSS that targets its unique ID.
See this post:
Mod
Quote:mention using “Add This” which I tried, but don’t really know how to use it or where to add the code1) Go to addthis.com and get your code.
2) Go to Appearance >> Graphene Options >> General Options >> Social Sharing Buttons. Tick the box marked “Show social sharing button”. More options will appear. Paste your code in the box marked “Your social sharing button code”
3) Click “Save”
Later, when you want to try something more challenging, you can use Graphene action hook widget areas to display these. Here’s how:
http://techblog.kjodle.net/2011/11/04/graphene-action-hook-widgets-an-easy-way-to-modify-your-blog/
Mod
Mod
Quote:According to Google/DFP all I need to do (plus 10 steps they assume I know but don’t) is past some code in the header and in the HTML content.I’ve never heard of using Google Ads in quite this way; all my ads are just text/javascript that I drop in a widget (WordPress) or just about anywhere in a hand-coded site. Which ads program is this?
Quote:isn’t there a place in the Graphene Options pages (sort of like how Google Analytics code is inserted – there’s a dedicated tab for that) for placing stuff that appears in the header.Advanced Options >> Custom <head> tags
That option will allow you to add data directly to your site’s
<head>element.Mod
Try this in custom CSS:
#header-menu-wrap {
border-bottom: none;
}
.menu-bottom-shadow {display: none;}Mod
Have you specified the pages/posts by post ID? Or won’t Graphene allow you to enter those?
