fordp
Forum Replies Created
-
Forum: Plugins
In reply to: Can't view the BuddyPress support forumsI figured it out – you must be logged in at www.ads-software.com, BBPress.org, and then BuddyPress.org..
:/
Whooa sorry. Forgot to check back here – I’m going to update my name/email here so I get updates ??
What I did, was change the ajaxurl to:
var ajaxurl = '/collaboration/wp-admin/admin-ajax.php';
inside of bp-gtm-system > _inc > global.js – third line
Works for my setup
We are starting to use our system internally tomorrow, so I should have a fix to share one way or another in the next 24hrs
Same problem for me.
Also, another issue.. Since I am using this as part of an internal system, my WordPress install is at: mysite.com/collaboration/
Inside of global.js, line 3, I had to change:
var ajaxurl = ‘/wp-load.php’;
to
var ajaxurl = ‘/collaboration/wp-load.php’;Forum: Hacks
In reply to: Custom Post Type – Creating Sub PagesOkay so I figured out how to get it to work:
https://crampedfingers.com/create-post-sub-pages/I did it a little different than the previous tutorial. In my case, I needed to use a lot of custom fields ??
Forum: Hacks
In reply to: Custom Post Type – Creating Sub PagesI did this tonight, and right after I finished doing so I reverted all of the changes.
The problem with using this method is… it sucks in my opinion. You can change the url in the browser with jquery ui using something like
$('#tabs ul li a').click(function () {location.hash = $(this).attr('href');}
BUT the issue is, if someone were to search “to kill a mockingbird reviews” and my page were to appear, it would appear like this (using wordpress codex as example): google search screenshot
This would not be sufficient. I realize that:
mysite.com/books/to-kill-mockingbird/#reviews
*could* appear as opposed to
mysite.com/books/to-kill-mockingbird/
with the jump to, but I really want real pages:
mysite.com/books/to-kill-mockingbird/reviews/
This would be the correct solution from every perspective.
Virtual Pages
I did find some information tonight, I’ll have to look into it more tomorrow as I’m exhausted from a 12 hour day:
https://betterwp.net/98-wordpress-create-fake-pages/His method looks pretty rough, but it should get me thinking a long the right lines.
Forum: Fixing WordPress
In reply to: i want to get posts based on page nameSo you have a page like:
“Sheriff Derek”
and then you have posts that have been placed in a category called “sheriff derek”.
Try this code:
<?php $artistcat = get_the_title(); query_posts('category_name=$artistcat'); ?>
Post a link to your website and I can tell you exactly where to look ??
Forum: Themes and Templates
In reply to: Need theming advice – handling widgets, including custom menusWell, for now I’m just going to use !important to get the definition “widget ul ul” out of the picture. I hate doing that, but at least I can move forward for now.
I still need a way to target only menus, and without having to go crazy and pull one of these: .sidemenu ul ul li, .widget_nav_menu ul ul li, .widget_categories ul ul li
Forum: Themes and Templates
In reply to: Problem with including jQueryCan you post your sites URL so I can take a quick look
Forum: Themes and Templates
In reply to: Problem with including jQueryI think you need a slash before js/myjquery.js
ie:
function my_scripts_method() { wp_deregister_script( 'jquery' ); wp_register_script( 'google-jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js'); wp_enqueue_script( 'google-jquery' ); wp_register_script( 'my-jquery', get_template_directory_uri() . '/js/myjquery.js', 'google-jquery'); wp_enqueue_script( 'my-jquery' ); } add_action('wp_enqueue_scripts', 'my_scripts_method');
Forum: Themes and Templates
In reply to: css code alignment questionYou would need to find a way to modify:
<div class=”homebottomwidget hb_widget feature_link”>
to
<div id=”bottomleft” class=”homebottomwidget hb_widget feature_link”>Than you could use:
#bottomleft .hometopwidget {
text-align: justify;
}to modify only the bottomleft widget
Forum: Themes and Templates
In reply to: Jeff's Best Hemp! Theme Match HelpJeff, obscure is correct. You will not find a theme that is a 100% match to your needs. If you don’t want to do any coding, your going to need to pay someone to make the modifications you require. No one is going to do it for free, most of us are booked up with paying clients as it is.
I do not know nor wish to know any coding. I need something that works out of the box and for free and matches.
Man, that would be nice… If you find a way to summon Rumpelstiltskin let me know, we could both be very wealthy.
Forum: Themes and Templates
In reply to: Translate PluginWhich version of WordPress do you have?
Most are likely to still work…
Forum: Installing WordPress
In reply to: I can't even download the latest WordPressIf you need it asap you could get it here: https://codex.www.ads-software.com/Installing/Updating_WordPress_with_Subversion
(Search for “New Install” to find instructions)
(/trunk/ is the latest ver – 3.0.1)