macmwebdesign
Forum Replies Created
-
When I updated, it gave me this error on the product pages. No datanames were duplicated on the individual product page. It seems that when you updated the plugin to allow creation of a field to appear on ‘ALL’ products, the error occurred. I created the common fields myself, by category, because there was no other way. But it does not violate your rule, and still I got the error. Once I rolled back to my backup, with the earlier version of PPOM, it works.
I have the same issue. Please let us know when official release is tested and ready!
Currently running older version until then.Is this option only available in the pro version? I’s using the free version.
I already said that nothing appears. Maybe you can go step by step to make sure we are on the same page? I enable the option in….and…look in…
Because I have done this already and I do not see an additional input in my gallery under the image title.Forum: Plugins
In reply to: [Crelly Slider] Custom Fonts for TextI do not see it in the head tag.
I checked on other plugins with similar questions, and tried what they recommended.
I used a plugin: Use Any Font.Worked great!
I really would like to know how to code this myself, though.
Thanks for your help. I really am liking this slider!
Forum: Plugins
In reply to: [Crelly Slider] Custom Fonts for TextIt is not.
When I use browser tools and inspect the element however, it shows computed style correctly:
font-family: optimusprincepssemiboldRg; color: #ffffff; font-size: 40px;
but it is not displaying.
Not sure what I am missing.
Forum: Plugins
In reply to: [Crelly Slider] Custom Fonts for TextThanks for responding, sorry this is 3+weeks later.
I have looked at the link you gave me, did some research.
I am a newbie with WordPress and this is what I came up with, but it does not work.
My site is local, so I cannot give you a link.Here is what I have in my fonts.css file, located in a fonts directory of my child theme:
@font-face { font-family: "optimusprincepssemiboldRg"; src: url('/optimusprincepssemibold/optimusprincepssemibold-webfont.eot'); src: url('/optimusprincepssemibold/optimusprincepssemibold-webfont.eot?#iefix') format('embedded-opentype'), url('/optimusprincepssemibold/optimusprincepssemibold-webfont.woff2') format('woff2'), url('/optimusprincepssemibold/optimusprincepssemibold-webfont.woff') format('woff'), url('/optimusprincepssemibold/optimusprincepssemibold-webfont.ttf') format('truetype'), url('/optimusprincepssemibold/optimusprincepssemibold-webfont.svg#optimusprincepssemiboldRg') format('svg'); font-weight: normal; font-style: normal; }
Then in my functions.php file in my child theme I have the following:
<?php /** Child Theme additional functions * Custom Fonts are enqueued here * */ function my_theme_styles() { wp_register_style( 'fonts', get_stylesheet_directory_uri(). '/fonts.css' ); wp_enqueue_style( 'fonts', get_stylesheet_directory_uri(). '/fonts.css' ); } add_action( 'wp_enqueue_scripts', 'my_theme_styles' ); ?>
In the Crelly Slider Plugin, on a text layer of a slide, I added a custom CSS as follows:
font-family: optimusprincepssemiboldRg; color: #ffffff; font-size: 40px;
The color and font size are correct, but the custom font was not used.
Can you see what I did wrong?
I appreciate your help.