Jessica
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Contact Form 7 Alignment IssueHi Rami, the link provided does not work for me, can you check to se if it is still viable?
https://credit-card-processing.info/lead-generation/I get a nothing found page.
Forum: Fixing WordPress
In reply to: Dissapearing Designer – How to add pages?Hi nburry,
I would be happy to try to help you. Would just need you to set up an account for me so I can log in and take a look at the set up.If you still need help let me know.
Jessica
Forum: Fixing WordPress
In reply to: Unknown 404 Redirection StatusHi Brian,
If you do not have any 404 error (Page Not Found) pages, I would recommend enabling it and directing them to the home page url.I would highly recommend setting up a 404 error page as that is user friendly and people may not know why they are being directed back to the home page if the page they were looking for was not found.
Forum: Fixing WordPress
In reply to: How to Edit the Call-To-Action Box?Hi decentspeak,
Are you using the Theme from themeforest?
https://themeforest.net/item/doover-premium-wordpress-theme/2279114If so I would recommend taking a look at the tutorials the author provides and perhaps trying out their support system. The author of the theme would be in a really good position to assist you if you need further help after viewing the tutorials.
Tutorials:
https://www.youtube.com/user/MuffinGroup
Theme Support
https://forum.muffingroup.com/doover/Hope this helps point you in the right direction.
Forum: Plugins
In reply to: [News-Ticker] How to get news ticker on home page sidebar only..Hi Pkvermn,your post was a while ago so you probably figured it out but you would want to create a different sidebar.php for the home page and call to that. Or you could add some PHP that would only display the widget when on the home page…
Forum: Plugins
In reply to: [The Events Calendar] Events Links Not WorkingHi Leah, I just wanted to thank you. I was having the issue where the events page pulled up a 404 error and I did what you suggested:
“The quickest possible path to a solution is simply to flush your rewrite rules: this is as easy as visiting the Permalinks Settings admin screen: you need change nothing, just visiting this screen makes WordPress clear up its list of rules.”
Worked like a charm!
Thanks!
JForum: Plugins
In reply to: [Ultimate TinyMCE] Formats Drop Down Menu Item No Longer WorkingForum: Plugins
In reply to: [Ultimate TinyMCE] Formats Drop Down Menu Item No Longer WorkingNope, and I was looking for a delete button for this post because I figured out why it was not working.
Under advanced options there is an option to select Load the CSS classes used in the editor-style.css and replace the formats buttons and sub-menu, when I unchecked that my styles were back. So its all good.
??Forum: Plugins
In reply to: [Expand + Collapse Funk] Collapse expand functionalityHi Evan, I would love this feature as well. Thank you for your work on this, its a great plugin, better than any of the others I have seen out there.
Forum: Plugins
In reply to: [Our Team by WooThemes] Simple CSSHi S.pri,
You can find their css here: https://gist.github.com/jameskoster/9954311Forum: Plugins
In reply to: [Our Team by WooThemes] How do I show each categories?Hi Hongseng, if you have not resolved this yet, all you need to do is call to the category ID.
For example:
[woothemes_our_team limit="10" size="100" category="6"] [woothemes_our_team limit="10" size="100" category="8"]
You can get the id by installing a plugin to display them. I use Catch IDs
https://www.ads-software.com/plugins/catch-ids/Good luck!
Forum: Plugins
In reply to: [Our Team by WooThemes] Pagination and LayoutHi Zairulkidz,
For 2, you would simply use CSS to get it to display that way.You can set the columns to display as 1 and then just style the .avatar to float left.
Woo Themes set up some sample code to get you started on the styles:
https://gist.github.com/jameskoster/9954311Note you may need to update the styles to fit what ever div you are using.
Hope that helps you get started on your style issue.
Forum: Plugins
In reply to: [Our Team by WooThemes] No option to upload imageHi, it may be that your theme does not have the featured image active?
You want to enable support for Featured Image. For more detailed info take a look at the codex: https://codex.www.ads-software.com/Post_Thumbnails
1. Place this in your functions.php
add_theme_support( 'post-thumbnails' );
Be sure to place it in the <?php ?> tag or add it to the above:
<?php add_theme_support( 'post-thumbnails' ); ?>
The featured Image option should now be available from the edit page or post.
One thing to note, if you are not developing your own theme but using an existing theme you may want to create a child theme so your changes will not be overwritten when you update the theme.
You can find that in the codex as well: https://codex.www.ads-software.com/Child_Themes
Hope that helps a little.
Best.
Forum: Plugins
In reply to: [Our Team by WooThemes] adding bio to team member pageHi Jim, I may be able to help as I have been working with the plugin myself recently.
If you take a look at the Other Notes page, you can find some documentation that you can use to add to your single-team-member.php.You should not need to worry about the theme code, just the code that you want to add specifically for the plugin.
So, to display the team members image:
'display_avatar' => true,
So it would look like this with the php on your ‘single-team-member.php’:
<?php do_action( 'woothemes_our_team', array( 'before' => '<div class="widget_woothemes_our_team">', //this adds a div before the content so you can easily style 'after' => '</div>', //closes the div 'display_author' => true, //Shows the name of the team members 'display_avatar' => true, //This is the featured image, that is how you can display the team members image 'title' => 'Whatever You Want The Title To Be', 'before_title' => '<h1>', 'after_title' => '</h1>', 'size' => 200 //Size of the image ) ); ?>
Note that there are more options and you will want to edit them appropriately for your needs.
I hope this helps you. It looks like you posted a while ago so you probably figured it out.
Best.
Forum: Hacks
In reply to: How To Replace The WP-Amin Login Page With A Custom Login PageBcworkz,
You are fabulous. Thank you so much for taking the time to help me. This is great info and I am going to work on it today. I will take a look at the plugins that Tara listed as well to get a feel for how they work.Again, Thank you. Truly appreciated!
??Jessica