Robert
Forum Replies Created
-
Forum: Plugins
In reply to: [EASE Framework] rename the databaseTicket resolved….see above.
Forum: Fixing WordPress
In reply to: How to display an HTTP "GET"?Hey CS – now THAT looks like something I’ll need a developer for! lol
The vendor, on their website, claims to have a widget…couldn’t find it so I wrote them…hopefully that will be the simplest.
Thanks!
Forum: Fixing WordPress
In reply to: How to display an HTTP "GET"?I wasn’t aware that everything had to be a WordPress issue – I thought you could ask questions regarding how to do things within, or using, WordPress…?
Anyhow there wasn’t any documentation at the source just the examples that I posted.
As it turns out though, this is something that seems to concern WordPress as there’s quite a few plugins that actually retrieve, format, and post data from url’s exactly like I posted under “Resource URL”.
So all anyone has to do to implement this “get method” – who’s not a Linux box or unfamiliar with setting up a command line/cron arrangement – is get a plugin!
I tried a few and “JSON API” works perfectly and is simple – no developer needed, not even an unexperienced one ??
Forum: Fixing WordPress
In reply to: Old sql export file into a new db & domainStarted from scratch and everything worked!
And then I decided to go with a sub-directory rather than sub-domain…lol
Forum: Plugins
In reply to: [WP RSS Multi Importer] Question about posts/feeds that don't have imagesFINALLY! ??
Here is a great plugin that does just what I needed…and works great with Multi Importer!
Forum: Plugins
In reply to: [WP RSS Multi Importer] Saving imagesThank you!
I also found a great plugin for images that works great with RSS Multi Importer:
https://www.ads-software.com/plugins/quick-featured-images/Forum: Plugins
In reply to: [WP RSS Multi Importer] Saving imagesHello Sirsaleabd!
Can you tell me which plugin you found that pulls the images?
Thanks!
RobForum: Fixing WordPress
In reply to: finding and editing code from Firebug?I tried the theme forums but as this isn’t a theme issue, or something that can be done through the theme but rather customization, it was suggested I use Firebug and just edit the code.
All I’m looking for here is where is the code?
I guess I could try a Firebug forum…thanks.
Forum: Fixing WordPress
In reply to: finding and editing code from Firebug?Hey Alchymyth!
I’m using The7.As for structure, I can usually muddle my way through most issues, that is once I find
where the code is.Thanks for the quick reply!
Forum: Fixing WordPress
In reply to: Having troubles removing a menuForgot to close… ??
Forum: Fixing WordPress
In reply to: Having troubles removing a menuThanks Rasto!
Forum: Fixing WordPress
In reply to: Having troubles removing a menuWorked perfectly!!!
That’s great…thank you so much!
Yes, now that I see it all I may be able to understand it better when I read about it ??
Appreciate all your help!
RobForum: Fixing WordPress
In reply to: Having troubles removing a menuThat’s what I always thought…lol
There is mention of a “post-id #” but when I go into posts and search for it – nothing comes up. And, like I said, I want the menu removed from all the ticket details page – so even removing from one post, if I could find it!, I’m not sure that would do it.
Here’s the snippet:
`
<body class=”single single-tickets postid-22510 logged-in admin-bar no-customize-support image-blur boxed-layout btn-ios wpb-js-composer js-comp-ver-4.3.4 vc_responsive”>’And, if you’d like to login as the user and see the page – and the entire page source –
https://technologysolutionslive.com
Login with:
trident45
rasker50Then click on the “title” of the ticket….then you’ll be in the “details” page – the page I want to remove the menu from.
Thanks again for all your time!
Forum: Fixing WordPress
In reply to: Having troubles removing a menuThanks for all your information and help!
I think this is going to beyond me ??
Part of the problem is it is not a “single page” – it’s not a page at all. If it were a page
I could just edit that page.When a customer visits the site and opens a help desk ticket and then click on the ticket details it brings them to a url “technologysolutionslive.com/tickets/ticketsubjectline” –
and I think this is fed/created directly from the db as I can’t find any posts/pages that correspond to a particular ticket.But whatever is going on – each time a user clicks on “ticket details” to view their ticket, it has a unique url ending with the whatever the user put in the subject line of their ticket.
I appreciate your help but I think I’ll just leave the menu there for now…lol…it seems a little beyond me at this point – I’m just an infrastructure guy ??
Forum: Fixing WordPress
In reply to: Having troubles removing a menuThanks for the quick reply!
I’m not sure of the semantics – but looking at it in Firebug it’s the main-nav menu.
So changing it with CSS wouldn’t impact the menu’s availability on other pages?
Here’s the header:
<?php /** * The Header for our theme. * * Displays all of the <head> section and everything up till <div class="wf-container wf-clearfix"> * * @package presscore * @since presscore 0.1 */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } ?><!DOCTYPE html> <!--[if IE 6]> <html id="ie6" class="ancient-ie old-ie no-js" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html id="ie7" class="ancient-ie old-ie no-js" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html id="ie8" class="old-ie no-js" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 9]> <html id="ie9" class="old-ie9 no-js" <?php language_attributes(); ?>> <![endif]--> <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <?php if ( presscore_responsive() ) : ?> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <?php endif; // is responsive?> <?php if ( dt_retina_on() ) { dt_core_detect_retina_script(); } ?> <title><?php echo presscore_blog_title(); ?></title> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <!--[if IE]> <script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <style type="text/css" id="static-stylesheet"></style> <?php if ( ! is_preview() ) { presscore_favicon(); echo of_get_option('general-tracking_code', ''); presscore_icons_for_handhelded_devices(); } wp_head(); ?> </head> <body <?php body_class(); ?>> <?php do_action( 'presscore_body_top' ); ?> <div id="page"<?php if ( 'boxed' == of_get_option('general-layout', 'wide') ) echo ' class="boxed"'; ?>> <?php if ( of_get_option('top_bar-show', 1) ) : ?> <?php get_template_part( 'templates/header/top-bar', of_get_option('top_bar-content_alignment', 'side') ); ?> <?php endif; // show top bar ?> <?php if ( apply_filters( 'presscore_show_header', true ) ) : ?> <?php get_template_part( 'templates/header/header', of_get_option( 'header-layout', 'left' ) ); ?> <?php endif; // show header ?> <?php do_action( 'presscore_before_main_container' ); ?> <div id="main" <?php presscore_main_container_classes(); ?>><!-- class="sidebar-none", class="sidebar-left", class="sidebar-right" --> <?php if ( presscore_is_content_visible() ): ?> <div class="main-gradient"></div> <div class="wf-wrap"> <div class="wf-container-main"> <?php do_action( 'presscore_before_content' ); ?> <?php endif; ?>