littlebear211
Forum Replies Created
-
thankfully, the person above fixed it for me @mackemlife. Hopefully they can for you too. But yep, what happened to good old customer service and being able to speak to a human when you needed? I get using bots to filter and also cut down things that are in the FAQ, but man I hate that this is the way businesses are going nowadays. I want the human contact back and people keeping their jobs to actually get decent support.
Hopefully @bruceallen can help you too
- This reply was modified 5 months ago by littlebear211.
Forum: Themes and Templates
In reply to: [Infinity News] Social Menu – Font Awesome + ion iconsI overcomplicated this for myself, all I had to do was change the font that was being used.
Forum: Themes and Templates
In reply to: [Infinity News] Social Menu – Font Awesome + ion iconsRealised the text didn’t copy over fully, sorry
I’m using infinity news child theme on littleseabear.com. infinity news uses ion icons and for the icon to appear in the social menu the css goes something like:
social-icons ul a[href*=website.com/]:after{
content: \f236}
issue is that ion icons doesn’t have a goodreads icon. I currently set the icon as a book, but would like to have the goodreads logo.
I tried adding fa-brands fa-goodreads (fontawesome classes) to the menu, it gives me the correct image, removes the hyperlink. menu-image plugin does the same.
so I think I need to add it to the theme fonts but can’t figure out how the hell to do that.
Forum: Themes and Templates
In reply to: [Responsive] Featured Content@tejassonawane21 wouldn’t there be somewhere in the code that just requires me to change “post” to “page”
Forum: Developing with WordPress
In reply to: Not saving Valuesthank you
Forum: Developing with WordPress
In reply to: Not saving Values@threadi thanks, with the link you sent, how / where would I implement it in my code? the html inputs or somewhere else?
Forum: Developing with WordPress
In reply to: Not saving ValuesNever mind, sorted it. I used the wrong data name in the field. Thanks you so much.
function wporg_save_postdata( $post_id ) { if ( array_key_exists( 'typechild2022_field', $_POST ) ) { // array key value = html <select name> update_post_meta( $post_id, 'book-status', $_POST['typechild2022_field'] // array key value = html <select name> ); } } add_action('save_post', 'wporg_save_postdata', 25, 1);
Forum: Developing with WordPress
In reply to: Not saving ValuesHi, I did forget to use add_action, still doesn’t work. Could you break down that add_action for me? is it the word book? What does the 25 and 1 mean?
Forum: Fixing WordPress
In reply to: Carousel does not move@littlepackage thanks for your help, yep I reverted as I think twenty twenty two theme is blocking with the new block elements? Will try again soon, just had to get working back on my studies (unrelated to coding). Thanks for helping ^_^
Php and Javascript is still new for me, I am more comfortable with html and css but wanted to give this a go.
- This reply was modified 2 years, 10 months ago by littlebear211.
Forum: Fixing WordPress
In reply to: Carousel does not moveThank you, I’ll check that type is up to date and try another theme in the meantime
Forum: Fixing WordPress
In reply to: Carousel does not moveI changed template to stylesheet directory, not sure if that helps.
Forum: Fixing WordPress
In reply to: Carousel does not move@littlepackage the script link from my site that you send me just takes me to the website.
the new name of the file is: customscripts.js and the code is:
add_action( 'wp_enqueue_scripts', 'add_child_javascript' ); function add_child_javascript() { wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/assets/customscripts.js', array ( 'jquery' ), 1.1, true); }
- This reply was modified 2 years, 10 months ago by littlebear211.
Forum: Fixing WordPress
In reply to: Carousel does not moveI’ve tried to enqueue it with a more unique name.
Forum: Fixing WordPress
In reply to: Carousel does not movedoesn’t take me there for some reason. I used this as a child theme for a different website fine, so not sure why it’s not enquing properly at the moment. I’ll try the unique name
Forum: Fixing WordPress
In reply to: Carousel does not moveYes to both. I followed the directory on my cpanel (the actual link just takes me to the webpage)
- This reply was modified 2 years, 10 months ago by littlebear211.