rzul
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Image behind testimonials sectionIdentify the class of the section by inspecting the element and then add the custom CSS in the theme’s customization CSS box. This is what we are using:
.testimonial { background-image: url(https://olsonpaving.com/wp-content/uploads/2017/01/blgrd_pavers_dk.jpg); background-repeat: repeat;
Forum: Plugins
In reply to: [Attach and Unattach] Can't find unattach-reattach in media libraryI figured this out on my own and it is really very simple. My apologies, but I guess I will leave the question here for those who have the same issue. In the Media Library, which displays all your media as thumbnails, you must change the view from grid to a list. In version 4.2.2 it is a tiny list symbol in the upper left corner. Then you will find the “re-attach” link created by this plugin. So simple, yet easily overlooked!
Forum: Themes and Templates
In reply to: [Pratt] Logo in HeaderSince the title of this post is “Logo in Header” would it be appropriate to elaborate on how to do this exactly? I have been trying to change the code, but it is a little above me. In the header.php file, I am looking at this section of code. Can you please advise me on what to do to eliminate the site title and replace it with my logo image?
$navbar .= '<a class="navbar-brand" href="' .esc_url( home_url( '/' ) ) .'" rel="home">' .get_bloginfo( 'name' ) .'</a>'; $navbar .= '</div><!-- navbar-header -->';
In html, I would use this code to place my logo:
<a class="navbar-brand" rel="home" href="https://candtconstruction.com"> <img width="155" height="50" alt="CandTConstruction" src="https://candtconstruction.com/wp-content/themes/pratt/images/logo-50.gif"></a>
Thank you in advance for your time.
Forum: Plugins
In reply to: [Quotes Collection] Change format of source link to "View Source"if($options['show_source'] && $quote_data['source']) { if($cite) $cite .= ", "; $cite .= '<span class="quotescollection_source">'. $quote_data['source'] .'</span>'; }
Forum: Plugins
In reply to: [Quotes Collection] Change format of source link to "View Source"In addition, would it too much to ask how to put the author and this source link on the same line and have it open as target=”blank”? It might end up like:
-Author Name, Source Text
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Error Mesages – plugin doesnt workCame here looking for a solution to the error message “Parameter 1 to wpcf7_tg_pane_dynamictext_() expected to be a reference, value given in…” I will try the patch, but would like the plugin author to see this post as well to save others a TON of trouble.
Contact Form 7 Dynamic Text Extension
Forum: Fixing WordPress
In reply to: don't want box around text to stretch to full widthThank you! I realize it will work better to use the existing button style for this. I appreciate your help. While I still don’t know what is making the box stretch the full width, this does fix the problem. Thank you again!!
Forum: Plugins
In reply to: [Clean My Archives] Limit archive list to one category?Thank you! I will try this very soon and let you know what happens.
Forum: Plugins
In reply to: [SP Project & Document Manager] link in email has incorrect pathThis problem was never resolved, so we finally switched to WP Client plugin instead. Working great!
Forum: Plugins
In reply to: [List category posts] Space between date and Author still unfixedI was also having a hard time figuring out how to add that space that was missing. This is what I ended up doing to fix it and also allow me to format the date in a different style at the same time.
In your existing shortcode, add a class to the date: [ date_class=catlist_date]
Then edit your custom stylesheet, whether that be in your theme or childtheme:
.catlist_date {
padding-right:5px;
(add additional styles for the date here)
}This will also work with the author by adding “author_class=catlist_detail” to your shortcode. You can give it the same class as the date or one of it’s own.
Forum: Plugins
In reply to: [SP Project & Document Manager] link in email has incorrect pathGood – thank you! I have tested the plugin on my site without any changes to the “Alternate Uploads Folder” URL. It was giving me the same result. Right now, I have these settings as:
System path: /home/taylorec/public_html/winzip-uploads
Direct URL: https://taylorelectric.org/winzip-uploads
Each user has their own number upload folder from what I can tell. And the files go to the correct place. But the link in the email message goes here: “https://taylorelectric.org/wp-content/plugins/sp-client-document-manager/download.php?fid=fHw=”
Forum: Plugins
In reply to: [Sidebar Form] how to make line break between captcha and submit buttonForum: Plugins
In reply to: [Sidebar Form] I'd like to drop a couple of fieldsrosenzweig70 – can you please enlighten us as to what you did? I’ve figured out how to modify the php file to eliminate the subject field, but since it is required the form will not process without it. Thank you in advance.
Forum: Themes and Templates
In reply to: [Pinboard] Google Web FontHaving this issue as well. Code entered in the Custom CSS gets changed. In my example the quotation marks get changed to it’s symbol code. Basically the same thing as you have stated.
Forum: Plugins
In reply to: [Promotion Slider] second unwanted slider floating to the right of contentWow! I looked at this a hundred times. Can’t believe I failed to see my mistake. Thoroughly embarrassing. If I could delete this thread, I would. Thank you for pointing out my error. Obviously, that was the problem.