AJD
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Arcade Basic] Removing Logo/Special FontsIf you mean the icon, there is an option in theme options to remove it. To add a custom logo you would have to modify the header.php file in a child theme and add your logo there.
For the fonts you use this code in functions.php in a child theme:
//remove existing fonts function custom_deregister_fonts() { wp_deregister_style('google_fonts'); } add_action('wp_enqueue_scripts','custom_deregister_fonts',100); // Setup New Google fonts function load_fonts() { wp_register_style('customeFonts', 'http://fonts.googleapis.com/css?family=your_fonts_here'); wp_enqueue_style( 'customeFonts'); } add_action('wp_print_styles', 'load_fonts');I forgot the closing
</h2>before the closing<?php }?>Edit your child theme header.php
<?php if ( is_front_page()) { ?> <h2 id="site-description"<?php echo $space_class; ?>> <?php bloginfo( 'description' ); ?> <?php } ?>Forum: Plugins
In reply to: [Simple Shopping Cart] Put buy now button in nextGen lightbox?Thanks. Even some pointers on where to edit would be helpful.
Forum: Plugins
In reply to: [Simple Shopping Cart] Integrate with nextGen, not a valid templateI figured it out, the insert gallery shortcode needs to be this: [nggallery id=1 template=wp-cart], without quote marks.
Forum: Plugins
In reply to: [Ultimate CMS] Ultimate CMS taxonomies with another pluginAny progress on this. I am running into a similar situation where I need to access the data with another plugin or hand-code access in functions.php. So far everything I have tried has failed.
The Types plugin can connect to the post types and taxonomies without a problem, but the custom fields for the taxonomies so far are not working.
For lorenzodp: if you install the Types plugin and create a post-type or taxonomy with the EXACT duplicate args from Ultimate CMS, it will work.
Hi,
Yes, it is very strange. I don’t know what could cause this, but since you are not able to duplicate the issue I also disabled all Firefox plugins to make sure it wasn’t a localized conflict. That didn’t change anything. I also deleted all caches.I didn’t have the external searches option you mention, however when I disabled: Highlight query terms in documents from local searches. It started working.
I’m marking resolved.
Hi Thanks for the quick reply and the documentation.
I have found other documentation here: https://pippinsplugins.com/adding-custom-meta-fields-to-taxonomies/ that explains how to do exactly what I’m trying to do, in case anyone else runs into this issue.
It would be great it Types added this kind of functionality because it is already one of the best UI’s for Taxonomies and Post-Types.
-AJ
I managed to sort this out in case others need to do the same thing.
The first step was to create the desired Post Type and Taxonomy in the Types plugin in the new site. It was important to match settings (args) exactly for both the post type and taxonomy from the old site.
Then the custom type and its accompanying taxonomy could be exported from the old site and imported into the new site using the standard WordPress exporter.
I ran into an issue where a page on the new site was using the same slug as the taxonomy being imported, so Types could not use it.
To work around I renamed the slug of that page, created the taxonomy and then named the page back to its original. I’m pretty sure that’s not the best practice, but I had to keep the two sites matching.
Best,
AJ
Hi,
The post type is generated with functions.php file and the taxonomy associated with it is generated with an outdated plugin.
However, I’m not able to see either the post type or the taxonomy associated with it in the Types – > custom Fields Control section.
Thanks
Forum: Themes and Templates
In reply to: [Interface] Can't get slider to work on front pageHi,
(I’m not actually a developer of this theme, just being helpful as I am using this theme on several sites.)
It might be that you have pasted the wrong number in your ID box? When you edit a post the link in the address bar will look something like this: /wp-admin/post.php?post=1084&action=edit
‘1084’ is the id for this post.
Forum: Themes and Templates
In reply to: [Interface] Slider showing on the blog pageI’m guessing you have your Front page display set to static in your Settings > Reading section? If so, then instead of setting your posts page to the page for your blog, just leave it blank on the default – select – and see if that fixes it.
Forum: Themes and Templates
In reply to: [Interface] Center Featured Post Slider titles?I don’t think there are settings for the position of the Title Text, so check the CSS for classes: .featured-text, .featured-title, they are both positioned absolutely. Some other plugin may be conflicting, try disabling others and see if the problem corrects.
Forum: Themes and Templates
In reply to: [Interface] Can't get slider to work on front pageYes, you must use the id# for that post and paste it in the box.
Did you add a featured image to the post?
The ‘Click Here to Edit’ button will take you to edit the post with the ID number you entered.
Forum: Themes and Templates
In reply to: [Interface] Remove link from featured image widgetThe widget output is created in inc/widgets/interface_widgets.php at line 1593, I can hack it to remove the link.
The ideal solution would be if the link redirect box is left blank, then there is no link, if the redirect link is added then there should be an option to open an external link or an internal link.