hyunster
Forum Replies Created
-
Forum: Plugins
In reply to: [Aesop Story Engine] Issues with the EngineHi I am aware of the issue and will try to fix the problem in the next release, which I hope is soon.
Forum: Plugins
In reply to: [Aesop Story Engine] Chapter menu broken in 1.6.10 – 1.6.11Hi which theme are you using? Do you have a URL I can look at? I will try to fix it as soon as I can if you can point it to me.
Forum: Plugins
In reply to: [Aesop Story Engine] trying to get full widthHi the code I gave you works for some themes but this theme is more complex. The first thing you have to do is add
.l-page-width{
max-width:100%;
padding-left:0;
padding-right:0;
}to “break” the container like the article says. Then restore the width of 1170px for everything but the aesop components like the article describes. It’s hard for me to come up with complete codes without the access to theme however. But obviously you can’t copy and paste the codes from the example since the class definitions are different between themes. You can learn about the class structures of theme by right-click on the browser and selecting “inspect.” Hope this information helps.
Forum: Plugins
In reply to: [Aesop Story Engine] trying to get full widthHi I think some information on that page is outdated. The following by no means a complete and final solution for you. But would be a starting point for you to experiment with.
Add the following into the Simple Custom CSS plugin.
.aesop-component {
margin-left:-100%;
margin-right:-100%;
}Forum: Plugins
In reply to: [Aesop Story Engine] Change order of Items appearing in CollectionsHi currently there is no way to change the collection order from the menu. If you are familiar with WordPress API you can edit component-collections.php to get the effect you want. Mainly, you want to edit order & order_by parameters passed to wp_query() functions. The file is found at wp-content\plugins\aesop-story-engine\public\includes\components.
We can add this capability to the component menu in a future version.
Forum: Plugins
In reply to: [Aesop Story Engine] move aesop parallax imageWhen you change the NAV bar you will have to try adjusting the margin-top value
Forum: Plugins
In reply to: [Aesop Story Engine] Aesop SE not working with Visual editor in WordPress 4.4Please try 1.6.9 as 1.6.8 had another issue that had to be fixed.
Forum: Plugins
In reply to: [Aesop Story Engine] move aesop parallax imageThen try
.content-area #content {
margin-top: -73px;
}Just replacing 0px with -73px
Forum: Plugins
In reply to: [Aesop Story Engine] Formatting the QuoteI will look into this issue as well.
Forum: Plugins
In reply to: [Aesop Story Engine] No preview image for video component?I will investigate further and let you know.
Forum: Plugins
In reply to: [Aesop Story Engine] move aesop parallax imagehow about this?
.content-area #content {
margin-top: 0px;
}Forum: Plugins
In reply to: [Aesop Story Engine] move aesop parallax imageHi try this
1. Install and activate Simple Custom CSS plugin.2. Go to Appearance->Custom CSS
3. Enter this under the Simple Custom CSS setting
.site-content article .entry-header {
display:none;
}I hope this is an adequate solution. Let me know if you need further help on this.
Forum: Plugins
In reply to: [Aesop Story Engine] No preview image for video component?Hi I am working on a new version of the video component. But I would like to ask what video source you are using. When using youtube as the video source, the video component should display the preview image provided by the youtube. Therefore I don’t think we had a request for a separate preview image before. I assume you have the video on your own location, not on youtube or vimeo? I could add an option to insert a preview jpeg of your own in the future version.
Forum: Plugins
In reply to: [Aesop Story Engine] Problem with AesopI am having a problem reproducing this issue. Do you mean if you click anywhere in the post editing area under Dashboard, the Aesop Component editing dialog pops up? Which Aesop Component are you using?
Forum: Plugins
In reply to: [Aesop Story Engine] Video chapter does not workHi there seems to be a bug with the video component. I will try to release a new version to address this as soon as I can.