carlabaldwin
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Stuck on “Processing Order…”I have found several people with same issue. Support tickets were “closed” and marked as a bug. Is there any fix for this issue??
Forum: Plugins
In reply to: [Strong Testimonials] Testimonials no longer showing up after 2.38 updateThis helped as a temp fix:
.strong-view.default.slider-container .strong-content {
min-height: 300px;
}Forum: Plugins
In reply to: [Strong Testimonials] Testimonials no longer showing up after 2.38 updateSame here – they display for a second then disappear. This occurs on the slider.
Forum: Plugins
In reply to: [Document Gallery] Customize document icon with dg_icon_template filterI figured it out. For anyone else wondering…
add_filter( ‘dg_icon_template’, ‘custom_doc_library’, 10, 3 );
function custom_doc_library($doc_icon, $desc, $attachID ){if ( in_the_loop() ) {
global $post;
$parent_id = wp_get_post_parent_id( $attachID );
$doc_icon = $doc_icon . ‘<br>attach ID: ‘ . $attachID . ‘<br>parent ID: ‘ . $parent_id;
}
return $doc_icon;
}Forum: Plugins
In reply to: Postman SMTP and Contact Form 7It was being caught by bluehost’s spam filters. All ok now.
Forum: Fixing WordPress
In reply to: Cannot get SSL/https to work properly on siteThank you Ross. I figured it out with help of hosting provider (Bluehost). I had to add the redirect code to .htaccess file and change URL of WordPress and Site address in settings. I should NOT have changed the wp-config file. That was causing a loop – too many redirects. I was told that with the new SSL you do not change the wp-config file. www.ads-software.com should update the Codex.
Thank you for your quick response!!
Forum: Plugins
In reply to: [WP Catalogue] WP Catalogue – product image border on hoverI changed it directly in the catalogue-styles.css file and still no luck. Could it be found in another file?
If I select “Clear” under Theme Color in Settings it reverts back to black. Is the border being set by this file?
Forum: Plugins
In reply to: [Easy Restaurant Menu Manager] two column responsive layoutForgot to add …. Put this under your media query:
@media screen and (max-width: 600px)
Forum: Plugins
In reply to: [Easy Restaurant Menu Manager] two column responsive layoutFigured it out. If anyone is having same issue, add the following to my child theme:
.wprmm_menu ul.two-column, .wprmm_menu ul.two-column li, .wprmm_menu .two-column li { width:99%; margin: 0 2% 5px 0; padding: 0; float: none; }
I figured it out… I had a width of 660 set to .site-content. Removed that and all is well.
Forum: Fixing WordPress
In reply to: Twenty Twelve – custom widget area in header –Resolved…
For some reason my display:inline was not working on the
<li>
in the functions.php code so instead I used table cells:[Moderator Note: Please post markup between backticks or use the code button. Your posted markup wrecked the display of this post which them has to be fixed manually.]
function arphabet_widgets_init() { register_sidebar( array( 'name' => 'Home Top Widget', 'id' => 'top-home-widget', 'before_widget' => '<td id="%1$s">', 'after_widget' => '</td>', )); }
and added this to the header.php
<div id="top-home-widget" class="top-home-widget"> <table class="vertMiddle"><tr> <?php if ( dynamic_sidebar('Home Top Widget') ) : else : endif; ?> </tr> </table> </div>
if anyone knows a better/cleaner way, please post.
thank you!Forum: Themes and Templates
In reply to: twenty twelve theme – customizing css for home widgets onlyYes, you’re right – it is Responsive – sorry …thinking of another site. I will look into the body_class.
Forum: Themes and Templates
In reply to: home widgets on static home page – responsive themethank you Esmi!
Forum: Themes and Templates
In reply to: Child theme "Broken Stylesheet is missing" on Windows servercould it be permissions on the styles.css file?
Forum: Themes and Templates
In reply to: Child theme "Broken Stylesheet is missing" on Windows serverI use UltraEdit for the text editing and WSFTP for the file transfer. I have created a child theme before with no issues (on a Linux server).