WP CMS Ninja
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Pro Icon Sets not ShowingAny thoughts on this? Why the ACF FontAwesome field would work in an options page for 2 out of 3 of the languages that are installed on a site?
Forum: Reviews
In reply to: [GF Upload to Email Attachment] Still worksHi Joona,
If I ever hear of it not working I will definitely look into how to resolve any issues.Greg
So I didn’t want to wait around for the author to respond to the ticket so I decided to write my own. Maybe the author will have a better way but here is my solution.
function get_pretty_link_url( $post_id ) { $pretty_link_id = get_post_meta($post_id, '_pretty-link', true); $url = prli_get_pretty_link_url($pretty_link_id); return $url; }
Hope this helps other people.
Yes I was using the latest version of your plugin. I haven’t had a chance to retest but I will try to test again to confirm this is still the case that AmazonSES is not working.
Forum: Plugins
In reply to: [Norse Rune Oracle Plugin] Custom ImagesWith how the base output is a textual number of the rune being shown and the image being the background, you really need to set the height and width of the image being shown as it is hiding the text and showing the background image instead. I am sure there is a way to make it as large as you are looking for. Otherwise you will need to modify the displayrune function within the class.runes.php file. This is where the HTML is being output. Within this class.runes.php file is also where the definitions and images are truly being set.
But modifying the plugin you may want to create your own based off of this one so updates don’t effect it.
- This reply was modified 2 years, 9 months ago by WP CMS Ninja. Reason: Plugin Updates Warning
Forum: Plugins
In reply to: [Norse Rune Oracle Plugin] Custom ImagesAs to customizing the dimensions, that to can be done via CSS.
For instance the control for the size of all the runes is the following css
.rune { width: 57px; height: 72px; text-indent: -9999px; border: 1px solid #000; }
So changing this to be the dimensions you need you your CSS with !important tags to ensure it overwrites the CSS in the plugin would be the dimensions.
Forum: Plugins
In reply to: [Norse Rune Oracle Plugin] Custom ImagesHi Celestial,
Right now if you want to change the images, this can be done via your child theme and changing the CSS.For instance, if you wanted to change the image for the Mannaz Rune you could add the following custom CSS to the separation one you can add this into your themes CSS.
#rune_1 { background-image: url(https://www.domain.com/wp-content/plugins/norse-runes-oracle/images/04separation.jpg) !important; }
So where I have the background image URL you can put your own image within the URL parenthesis.
I do have plans to make it so you can upload your own but I have not found the time to do any work on this plugin in years. Hope this helps.
Greg
Forum: Plugins
In reply to: [Custom Post Type UI] Taxonomy Permalink Issue w/ Sub-CatsI have “Post Name” selected.
Forum: Plugins
In reply to: [Custom Post Type UI] Taxonomy Permalink Issue w/ Sub-CatsWhen you say Post Name for the radio buttons option, this is a hierarchal taxonomy of product categories. There is a main Product post type that can have these categories assigned to it. Not sure what you mean tbh.
Forum: Plugins
In reply to: [Custom Post Type UI] Taxonomy Permalink Issue w/ Sub-CatsNo reason for query_var to be set to false, I changed it to be set to true in the attempt to get the
/product-category/parent/child
working but it is still throwing a 404. but/product-category/child
does work.$labels = [ "name" => __( "Product category", "custom-post-type-ui" ), "singular_name" => __( "Product category", "custom-post-type-ui" ), ]; $args = [ "label" => __( "Product category", "custom-post-type-ui" ), "labels" => $labels, "public" => true, "publicly_queryable" => true, "hierarchical" => true, "show_ui" => true, "show_in_menu" => true, "show_in_nav_menus" => true, "query_var" => true, "rewrite" => [ 'slug' => 'product-category', 'with_front' => true, 'hierarchical' => true, // 'hierarchical' => false, ], "show_admin_column" => true, "show_in_rest" => false, "show_tagcloud" => true, "rest_base" => "product_category", "rest_controller_class" => "WP_REST_Terms_Controller", "show_in_quick_edit" => true, "show_in_graphql" => false, ]; register_taxonomy( "product_category", [ "product" ], $args );
And I did attempt to clear the permalink cache.
Forum: Plugins
In reply to: [Custom Post Type UI] Taxonomy Permalink Issue w/ Sub-CatsThe structure that I am wanting is as followed based on your example:
mydomain.com/product-category/container/bottle/Right now the only way I can get to it is via this URL:
mydomain.com/product-category/bottle/Where bottle is a sub-category of parent container.
Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] taxonomy sub-category permalinkSorry, wrong plugin used to generate taxonomy. Will repost under the right topic.
Forum: Plugins
In reply to: [Custom Post Type UI] Post Type Access DeniedYea, I think I was able to track down the issue. It kept bugging me and I was able to find the role that needed to be added.
Forum: Plugins
In reply to: [The Events Calendar] Switching to New Theme – Permalink GenerationSorry, meant to say pagination for list view doesn’t work on one of the languages. Just strange how inconsistent the permalinks are with this new calendar style.
Forum: Plugins
In reply to: [The Events Calendar] The list/ calendar/day switcher doesn’t workI am seeing this issue as well. Sometimes the permalinks do get rewritten correctly but then in others they don’t. I had to use wp-cli to fix this issue on 2 out of 3 of the sites languages that I am working with. But it is not able to get to the 3rd language in list view. Almost like it is having an issue finalizing these: get_dynamic_matchers.
What happens if you go to Settings – Permalinks and save there?
Hoping your issue can help me with mine.