crowdesign
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Seventeen] home page image takes up too much spaceUpdate. I just saw that the previous post was referring to the live site, not the screen shot. So, this may already be resolved.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] home page image takes up too much spaceI do see the double name. The sharp, clear one is your site title, which is generated by the theme. You can add CSS to your child theme to not show the site title. If you do that make sure you add the text to the Alt Text value of your image (because search engines can’t read images).
Another option is to remove the name from your image and move the site title using CSS to center and lower the text to the position you want. This may be the better option because then the text will stack on a mobile device and remain at an appropriate size for reading.
I recently tested this plugin. I really like it, and would like to use it, but noted that the last update was one year ago. Has this plugin been abandoned? I would like to be able to continue using the plugin after upgrade to WordPress 5.1.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] header image sizing for all pagesTry this. Replace the 75vh with whatever height or pixel height (750px or whatever you need). Remember that twenty seventeen keeps the header the same height and crops to the center vertically, also crops out the sides on mobile screens (annoying!) so when you build your cover image keep it 1200 high but focus your content in the center bot vertically and horizontally:
.custom-header-media img { height: 75vh !important; position: relative !important; } .custom-header { height: 75vh !important; }Forum: Plugins
In reply to: [WP Custom Fields Search] Nav Menu not showing on custom search resultThanks! I just saw that you had responded to my post. I will send the theme files over right away.
Forum: Fixing WordPress
In reply to: Visual Editor No Longer Working in 3.6I remembered that a similar thing happened after a previous upgrade. The visual editor was not showing. This time, after upgrade to 3.6.1 my visual editor was showing up but media and galleries were missing from the visual editor. Here is the solution that worked for me:
Go to your account settings. set the visual editor to NOT show. Log out. Log back in and set the visual editor TO show. Log out.
Delete browser cache!
Log back in and all should be well.
Maybe just deleting the browser cache would work. I didn’t try that.
I am having the same issue.
I have the plugin istalled on a site using a child theme to TwentyTwelve.
When I use the regular search box from (located inthe sidebar of the pages with sidebars) and type in “Austin” iI get a results page with the navigation showing. http://arborprop.com/?s=Austin
When I use the Custom Menu Search using the dropdown for the city “Austin, TX” I get a results page with no menu navigation. http://arborprop.com/?search-class=DB_CustomSearch_Widget-db_customsearch_widget&widget_number=preset-default&cs-city-0=Austin%2C+TX&cs-zip-1=&cs-Bedrooms-2=&search=Search
I have checked theCSS and the problem seems to be in the responsive menu toggle.
Regular search results for the page include this code for in the HTML for the header nav:
<nav id="site-navigation" class="main-navigation gradient" role="navigation"> <h3 class="menu-toggle">Menu</h3> <a class="assistive-text" href="#content" title="Skip to content">Skip to content</a>And then the div shows holding the menue items and the closing nav tag.
Th html for the custom search results in:
<nav id="site-navigation" class="main-navigation gradient" role="navigation"> <h3 class="menu-toggle" style="display: none; ">Menu</h3> <a class="assistive-text" href="#content" title="Skip to content">Skip to content</a> </nav>Note that
display:none;is in this result.I have not been able to determine what it is about the plugin that is causing this. Please help!
Forum: Fixing WordPress
In reply to: Dynamic link to category page from custom page with category postsThank you so much! It worked like a charm. The only thing I had to change was to delete and extra closing php tag from the category link, and I re-ordered the wording of the category link so it would read “View all categoryname posts.”
I also wrapped the link in a nav tag to keep it in place at the bottom of the page.
Here is the revised code for those who want to use this:
<!-- Print a link to this category --> <nav id="nav-below" class="navigation" role="navigation"> <?php $cat = get_term_by('slug',the_slug(),'category'); ?> <a href="<?php echo get_category_link( $cat->term_id ); ?>" title="All posts in this category.">View all <?php echo the_slug(); ?> posts.</a> </nav><!-- #link -->Forum: Fixing WordPress
In reply to: Dynamic link to category page from custom page with category postsI also found this online:
// Get post slug function get_slug() { $post_data = get_post($post->ID, ARRAY_A); $slug = $post_data['post_name']; return $slug; }It is a slight variation of the code I already put in the functions.php file. Maybe I need it as well? I am not really sure how all this works. This one is to “get” slug the other is to “echo” slug.
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] [bug] Problems when publishing to a pageThanks. Since I am not willing to give up Yoast is there a workaround?
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] [bug] Problems when publishing to a pageActually I figured out the bad URL. That was a page the client had started but then later deleted. I just upgraded Facebook plugin to 1.1.1 and will have the client attempt another post tomorrow.
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] [bug] Problems when publishing to a pageThe wordpress site is http://www.facebook.com/pages/Law-Office-Of-Denise-J-Lukins-PLLC/397911300266020.
Also a link to a post is going to he wrong URL as well. (the radio Interview post)
WordPress version 3.4.2
Facebook Version 1.0.2Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] [bug] Problems when publishing to a pageI recently installed this plugin on a client’s website. It posts a notice to her page but the paragraph tags (<p>) from the blogpost snippet show up in the Facebook post. They are not visible on the blog post.
Any solutions?
Forum: Networking WordPress
In reply to: Considering a multisite install, a few questionsHello,
Thanks for the good information. Andrea, your ebook is very helpful.
I just have one question before I install. Everything I have read describes the WordPress network install into the root. I will be using subdirectory (subfolder) format. Currently I have a site at mysite.com and would prefer not to crowd the directory with wordpress files (It is not a wordpress site). I also will be installing Joomla etc. to work with. And, I want to make sure that the WordPress blog is not what shows up first when my site is viewsd. My current home page still needs to be my main site.
I would like to install WordPress into mysite.com/wp. The sites then would be mysite.com/wp/site1
Will that work?
Thanks,
Kerry
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] e-commerce activation problemThanks,
I will try to contact my host service and see if they can trouble shoot the issue.