Digest WP
Forum Replies Created
-
Forum: Your WordPress
In reply to: New Men's BlogThanks all for the feedback.
@dice2dice – I will definitely work on getting that about page up. What areas are you seeing with no content? Thanks!
@b.Tyson – Thanks a lot I appreciate that and will work on swapping out some colors.
@aubrey Portwood – Thank you! Glad you liked it
Forum: Your WordPress
In reply to: New WordPress BlogHey,
Awesome thanks. Something I definitely over looked and will make sure to add to all my current and future projects.
Much appreciated!
Forum: Your WordPress
In reply to: New WordPress BlogHey,
Thanks Esmi, I appreciate the input. Better now? https://digestwp.com/
This blog was on hold for a while but hoping to get it a bit more involved now.
Forum: Your WordPress
In reply to: New WordPress BlogNot sure why I disable the focus state just get tired of the yellow border in chrome.
@esmi – Any feedback to help me move forward with the site would help, let me know what I can do to fix. Thanks
Forum: Your WordPress
In reply to: New WordPress BlogRebuilt the theme, and made it responsive. Hoping to get feedback on bugs if any. Thanks
Forum: Everything else WordPress
In reply to: Online StoreHello,
The two links I mentioned above are plugins. So these can be added to any existing WP sites. So you can implement it and point it to https://katelynsboutiqueonplant.com/ourstore/
Hope this helps
Forum: Themes and Templates
In reply to: How do I use a jQuery plugin in my theme?Hello,
Also if you are using Chrome use the Inpsect element feature then check the console and it will tell you the jQuery errors.
Maybe the problem is you are thinking I am just going to type and explain exactly what you need code and all.
What I am actually doing is showing you different methods and explaining why somethings would not work.
Forum: Themes and Templates
In reply to: CSS help, custom google search engine results not showingSo the theme is Alltuts? Have you tried reverting you search.php to something more similar to twenty ten?
Forum: Themes and Templates
In reply to: How do I use a jQuery plugin in my theme?It is correct. Those files need to be in your site, link them internally and change out links.
To call jQuery with functions
<?php function my_scripts_method() { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'); wp_enqueue_script( 'jquery' ); } add_action('wp_enqueue_scripts', 'my_scripts_method'); ?>
This loads WordPress jQuery which is not enough to get your plugin working since you need the custom jQuery plugins
<?php wp_enqueue_script("jquery"); ?>
When you say I have only copied every other vague tutorial then maybe the problem is you need to slow down and read things since these tutorials are obviously there to help.
Forum: Themes and Templates
In reply to: Posttypes, loopHello,
Filter WordPress loop like this
<?php query_posts('category_name=wordpress&showposts=5'); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> </li> <?php endwhile; ?>
This will help you with the category search
https://blog.portal.kharkov.ua/2008/01/13/search-in-category/<form method="get" id="searchform" action="https://www.domain.com/category/myspecialcat/"> <input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id=s> <input type="submit" id="searchsubmit" value="Search My Special Cat"> </form>
Forum: Themes and Templates
In reply to: Twenty Eleven Child theme – Excerpt problemHello,
I am guessing there is a problem with the theme it self. Or you could make a function that pulls in the proper meta data vers that Read more link
Forum: Themes and Templates
In reply to: How do I use a jQuery plugin in my theme?Hello,
Adding custom jQuery into WordPress is not always that simple. Sometimes the theme jQuery can conflict and sometimes you have to put the scripts in the footer instead of the header.
These 4 files will go in your header
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js"></script> <script type="text/javascript" src="/javascript/jquery.mousewheel.min.3.0.6.js"></script> <link rel="stylesheet" href="/css/jquery.sbscroller.css" />
Then for the scrollbar you need this, placed before the closing </body> tag – where #myelement is replaced by your element selector, obviously:
<script type="text/javascript"> $('#myelement').sbscroller(); </script>
Here is a good tutorial:
https://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/
Also you may want to load up the jQuery in the footer and test that.
Forum: Themes and Templates
In reply to: CSS help, custom google search engine results not showingHello,
I created the same thing once and just used parts of this plugin
https://www.ads-software.com/extend/plugins/google-custom-search-for-wordpress/screenshots/Or maybe this would help
https://www.tipsandtricks-hq.com/how-to-add-google-custom-search-to-wordpress-without-any-plugin-video-tutorial-3967Forum: Fixing WordPress
In reply to: Backup and RestoreHello,
This string should help
See these two articles
Moving WordPress
https://codex.www.ads-software.com/Moving_WordPresshttps://www.mydigitallife.info/2007/10/01/how-to-move-wordpress-blog-to-new-domain-or-location/
Forum: Fixing WordPress
In reply to: can I hold launch of websiteHey,
If you have access to the WP dashboard and that has control.
You could always use an under construction plugin to hide you actual content.https://www.ads-software.com/extend/plugins/underconstruction/
https://www.ads-software.com/extend/plugins/simple-coming-soon-and-under-construction/
https://www.ads-software.com/extend/plugins/tags/under-construction