gabrielcastillo
Forum Replies Created
-
You can user
is_single()
for post’s andis_page()
for pages.Example:
if( is_single('hello-world') ){ echo 'hello world'; }
Read Here:
CodexForum: Plugins
In reply to: Application form – including resume and photo uploadyou can build your form using the contact form 7 plugin. With this plugin you can get really creative.. use file uploads and user input box’s. Also easy to style.
Forum: Plugins
In reply to: [Redirection] Is there a way to export all of my redirects?What type of redirects are you currently using?
Forum: Themes and Templates
In reply to: I really messed up my websiteWhat did you do with this code? Looks like proper css to me. What code did you place in the “event calendar template”? What can you load the template file on to pastebin and share the code so I can see the code.
Forum: Themes and Templates
In reply to: I really messed up my websitePaste the code you placed in the calander section. Looks like you are missing some closing html tags.
Forum: Fixing WordPress
In reply to: Landing Page on Navigation Menu – PinboardI believe you can do this with custom nav links in the menu settings. All you would have to do is create a custom menu item and link to your blog page. Then you would place the nav menu item anywhere in your nav menu.
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected 'can you paste the block of code from starting at line 560 and ending at line 570 from the functions.php file.
Forum: Fixing WordPress
In reply to: Installing WordPress Site on New HostYou can do a one-click install from godaddy admin panel. Then after you install wp you can upload your custom theme files.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 too big for widgetTry this in your css file.
.sidebar .wpcf7 input[type="text"], .sidebar .wpcf7 input[type=email] { width:260px; }
Also, looks like you have some errors on your site. If you use firefox with firebug extention installed, you will see errors showing up in the console log. I just thought I would let you know.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 too big for widgetWhat is the url of you site? What theme are you using?
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 too big for widgetyou can do this by changing the css of the parent div for whichever CF7 widget you are using. Or you could target the sidebar the the parent css class.
Forum: Fixing WordPress
In reply to: Images pop up helpWhat is the url to your site? What theme are you using?
Forum: Fixing WordPress
In reply to: sidebar social icons showing vertically instead of horizontallyGive this a try:
CSS CODE:
/*CSS Code*/ .sidebar_social_links { list-style:none; } .sidebar_social_links li { float:left; margin-right:10px; }
HTML CODE:
<ul class="sidebar_social_links"> <li> <a href="https://www.bloglovin.com/en/blog/7760515"> <img src="https://behindtheblush.ca/wp-content/uploads/2013/06/blog-lovin-e1370297521717.png" > </a> </li> <li> <a href="https://instagram.com/stefcarlson"> <img src="https://behindtheblush.ca/wp-content/uploads/2013/06/instagram-e1370297651262.png" > </a> </li> <li> <a href="https://www.facebook.com/pages/Stefanie-Carlson-Professional-Hairstylist-and-Makeup-Artist/225042664255353?ref=ts&fref=ts"> <img src="https://behindtheblush.ca/wp-content/uploads/2013/06/facebook-e1370297677388.png" > </a> </li> <li> <a href="https://twitter.com/StefanieRas "> <img src="https://behindtheblush.ca/wp-content/uploads/2013/06/twitter-e1370297561900.png" > </a> </li> <li> <a href="https://pinterest.com/behindtheblush/"> <img src="https://behindtheblush.ca/wp-content/uploads/2013/06/pinterest-e1370297591538.png"> </a> </li> <li> <a href="mailto:stefanieATbehindtheblushDOTca"> <img src="https://behindtheblush.ca/wp-content/uploads/2013/06/mail-e1370297621408.png"> </a> </li> </ul>
Forum: Plugins
In reply to: Bottom right post suggestions plugin?This plugin might be the one you are talking about: https://www.ads-software.com/plugins/nrelate-flyout/
Thank you , I’m glad this could help. I plan to make improvements in the future.